About 58 results
Open links in new tab
  1. SQL Server smalldatetime vs datetime2 - Stack Overflow

    Jun 10, 2017 · I've read several articles about using data types that support dates in SQL Server but I'm still undecided about what kind of data to use. All the people says to use the new and …

  2. SQL Server date vs smalldatetime - Stack Overflow

    Moreover implicit conversion between various data types can be wrong/unexpected. I would keep one type of date (4 bytes smalldatetime in this case) if you JOIN between tables on date …

  3. sql server - Convert varchar column to smalldatetime - Stack …

    In this table I have a column named 'Data' of varchar (10) datatype which contains dates in dd.MM.yyyy format.I want to convert it to smalldatetime. I've tried converting it using …

  4. sql server - Fila de una tabla en SmallDateTime , no puedo cargar ...

    Oct 4, 2022 · Fila de una tabla en SmallDateTime , no puedo cargar algunas fechas y otras si. (mismo formato) Formulada hace 3 años y 1 mes Modificada hace 3 años y 1 mes Vista 214 …

  5. SQL smalldatetime SELECT query - Stack Overflow

    Dec 7, 2015 · I need to select rows from table, where smalldatetime between two values. Im trying do that query, but it's dont work: SELECT [numdoc] ,[numdok] ,[kodsotr] ,[dateShip] …

  6. .net - C# Equivalent of SQL Server DataTypes - Stack Overflow

    For the following SQL Server datatypes, what would be the corresponding datatype in C#? Exact Numerics bigint numeric bit smallint decimal smallmoney int tinyint money Approximate …

  7. sql - Conversion of a date data types to a smalldatetime data type ...

    Feb 6, 2020 · Conversion of a date data types to a smalldatetime data type resulted in an out of range value Asked 5 years, 10 months ago Modified 2 years, 5 months ago Viewed 9k times

  8. ¿Cómo hacer una consulta SQL con fecha y hora con tipo de …

    Oct 4, 2021 · ¿Cómo hacer una consulta SQL con fecha y hora con tipo de campo smalldatetime? Formulada hace 4 años y 2 meses Modificada hace 4 años y 1 mes Vista 2k …

  9. SQL Server compare Smalldatetime with date time string

    Jun 24, 2016 · I cant seem to find any examples where people are using the smalldatetime type to query with anything other than the date. I can get queries to work with the date, but it ignores …

  10. Truncate seconds and milliseconds in SQL - Stack Overflow

    Jun 30, 2014 · CAST(GetDate() AS smalldatetime) To be clear, this will round the generated seconds up (or down) to the nearest minute depending up the value of the current second. …