On a Questdb table I made some queries that are working, but when I tried to apply a where clause the field that has a timestamp type:
SELECT Timestamp_GMT, ValueCal
FROM mytable
WHERE Timestamp_GMT='2020-12-11T11:23:27.583036Z'
I got an error message:
unexpected argument for function: =. expected args: (STRING,STRING). actual args: (TIMESTAMP,STRING constant)
In the database, Timestamp_GMT has type timestamp
and there are values with format displayed like 2020-12-11T11:23:27.583708Z
In the documentation, there are examples of where clause applied to timestamps, but I can't see my mistake: https://questdb.io/docs/reference/sql/where
Can you please help me?