About 17,800,000 results
Open links in new tab
  1. sql - How do I use select with date condition? - Stack Overflow

    Jan 20, 2009 · In sqlserver, how do I compare dates? For example: Select * from Users where RegistrationDate >= '1/20/2009' (RegistrationDate is datetime type) Thanks

  2. How do I query for all dates greater than a certain date in SQL Server ...

    where A.Date >= '2010-04-01' it will do the conversion for you, but in my opinion it is less readable than explicitly converting to a DateTime for the maintenance programmer that will come after you.

  3. How to return only the Date from a SQL Server DateTime datatype

    Sep 22, 2008 · The datetime data type cannot have no time at all. I think you are confusing data storage with user presentation. If all you want is a way to show a user a string that has no time portion (not …

  4. sql - Check if value is date and convert it - Stack Overflow

    May 8, 2013 · 15 I receive data in a certain format. Dates are numeric (8,0). For example 20120101 = YYYYMMDD There exists rows with values like (0,1,2,3,6) in that date field, thus not a date. I want to …

  5. sql - Convert string to date in specific format - Stack Overflow

    Jan 8, 2014 · How do I convert a string to a date type in SQL Server 2008 R2? My string is formatted dd/mm/yyyy I tried this SELECT CAST('01/08/2014' AS DATE) But that does the cast in mm/dd/yyyy …

  6. sql - Get the week start date and week end date from week number ...

    Get the week start date and week end date from week number Asked 16 years, 5 months ago Modified 2 years, 9 months ago Viewed 419k times

  7. t sql - Sql Server string to date conversion - Stack Overflow

    Oct 16, 2008 · SQL Server (2005, 2000, 7.0) does not have any flexible, or even non-flexible, way of taking an arbitrarily structured datetime in string format and converting it to the datetime data type.

  8. sql - How to get calendar Quarter from a date in TSQL - Stack Overflow

    Oct 12, 2016 · I have different dates in a column. For example: 20080102 20070821 I want to convert these dates in Year and calendar quarter. E.g., Year Quarter 2008 2008-Q1 2007 2007-Q3 I can ...

  9. SQL SELECT WHERE with date and time - Stack Overflow

    Dec 11, 2011 · You need to get rid of the idea of separate date and time fields when searching You need to create an additional column in your table called date_time (type DATETIME) which combines …

  10. sql server Get the FULL month name from a date - Stack Overflow

    Apr 1, 2009 · How do I use sql to get the whole month name in sql server? I did't find a way using DATEPART(mm, mydate) or CONVERT(VARCHAR(12), CreatedFor, 107). Basically I need in the …