Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select by Date from DateTime in SQL Server
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
01653212
Message ID:
01653214
Views:
97
This message has been marked as the solution to the initial question of the thread.
>Hi,
>
>I am working with the SQL Server database. The field/column is DateTime. And I want to get records by the following criteria:
>
>
>select * from MyTable where DateTimeCol <= '20170810'  
>
>
>Since the DateTimeCol has both the date and time, the above will select 0 records.
>
>How should I change the WHERE to make sure that only the Date of DateTime is considered and therefore the records where the Date is '20170810' are returned?

Hi Dmitry,

The question is "How to remove time from datetime"?
/* MS SQL 2008R2 + */
select * from MyTable where CAST(DateTimeCol AS DATE) <= '20170810'  

/* MS SQL*/
select * from MyTable where CAST(CAST(DateTimeCol AS INT) AS DATETIME) <= '20170810'  
MartinaJ
"Navision is evil that needs to be erazed... to the ground"

Jabber: gorila@dione.zcu.cz
Jabber? Jabbim
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform