In order to access the records for a particular date, you will need to use the following syntax:
SELECT * FROM TableName
WHERE Date="dd/mm/yyyy";
In order to access the data between two particular dates of birth, you can use one of the following statements:
SELECT * FROM TableName
WHERE Date BETWEEN "dd/mm/yyyy" AND "dd/mm/yyyy";
or
SELECT * FROM TableName
WHERE Date >= "dd/mm/yyyy" AND Date <= "dd/mm/yyyy";