I have a table in SQLite:
CREATE TABLE test_results(timestamp TEXT, npass INTEGER, nfails INTEGER)
I want to return the last pass/fail information for each day. For example if the table contains...
2009-08-31 23:30:19|0|24 2009-08-31 23:37:18|0|24 2009-08-31 23:40:00|0|24 2009-09-01 19:02:13|0|2 2009-09-01 19:08:24|2|0 2009-09-01 19:20:29|2|0
I'd like a select statement to return...
2009-08-31 23:40:00|0|24 2009-09-01 19:20:29|2|0
Thanks in advance!