LiteDB.Studio
LiteDB.Studio copied to clipboard
DateTime syntax in SQL
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.
@Delog-ru Something like SELECT $ FROM Protocols Where created > DATETIME('2020-04-01T00:00:00.00Z') should work