Open Delog-ru opened 4 years ago
Can't figure out how to construct SQL expression with DateTime. SELECT $ FROM Protocols Where created > "2020-04-01T00:00:00.00Z"; doesn't work properly. It just shows everything. Field "created" is indexed.
SELECT $ FROM Protocols Where created > "2020-04-01T00:00:00.00Z";
@Delog-ru Something like SELECT $ FROM Protocols Where created > DATETIME('2020-04-01T00:00:00.00Z') should work
SELECT $ FROM Protocols Where created > DATETIME('2020-04-01T00:00:00.00Z')
Can't figure out how to construct SQL expression with DateTime.
SELECT $ FROM Protocols Where created > "2020-04-01T00:00:00.00Z";
doesn't work properly. It just shows everything. Field "created" is indexed.