I am making an iPhone application in which I am storing date and time in a column now I want to sort the date and time in the order which occurs first.
How can I do
Have you tried this
SELECT * FROM TableName WHERE DateColumn >= date('now') ORDER BY DateColumn ASC