I'm working with Sqlite on Android. Within a table I got a column of String value that stores a timestamp in UTC formatted like this "yyyy-MM-dd HH:mm:ss". Now I want to compare that value against another timestamp that's in the same format. Let's say you want all recorders newer than "2013-01-01 00:00:00". But how to use this in a SELECT statement?
example:
- Table: human
- Column: (TEXT) name
- Column: (TEXT) bornOnUtc
And now select all humans born after 2013-01-01 00:00:00?