How can we access all the records from database chronologically?

–1 vote

1 Answer

0 votes
No avatar answered by (193k points)

SELECT * FROM TableName
WHERE Date="dd/mm/yyyy";

SELECT * FROM TableName
WHERE Date BETWEEN "dd/mm/yyyy" AND "dd/mm/yyyy";

SELECT * FROM TableName
WHERE Date >= "dd/mm/yyyy" AND  Date <= "dd/mm/yyyy";

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register
...