Skip to content
Advertisement

SQL query to get data without hours in timestamp column

I have written a code and sql query to get data from database:

I get this dataframe:

I want to write another query to get data only for 2019-05-29:

but it brings me an error:

How could i do that? How could i get rid of hours in timestamp column in my sql query? Desired result is:

Advertisement

Answer

  1. toDate(timestamp)

    SELECT * FROM mytable WHERE toDate(timestamp) = ‘2019-05-29’ LIMIT 4

  2. SELECT * FROM mytable WHERE timestamp => toDateTime(‘2019-05-29’) and timestamp < (toDateTime(‘2019-05-29’) + interval 1 day) LIMIT 4

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement