I am trying (and failing) to perform the following query in BigQuery using Standard SQL
SELECT
user_id
FROM
dataset.table
WHERE
timestamp > TIMESTAMP("2017-09-18 00:00")
I constantly get the message
Query Failed
Error: Invalid timestamp: '2017-09-18 00:00'
I tried, desperate, with 2017-09-18T00:00 or like the Legacy SQL timestamp > "2017-09-18 00:00" without success.
Thanks for your help.
timestampcolumn? - Tim Biegeleisen