Hi there!
I have a table which is structured like this:
(I.e. ROW_NUM is a hard coded column in the database).
If I run a SQL command which as such:
SELECT *
WHERE DATE = '30/12/1999'
How would I go about returning the date column of row 90 - 99? (I.e. I would want the resulting output to be the dates from 21/12/1999 to 30/12/1999).
Any help would be much much appreciated!
I have a table which is structured like this:
Code:
| ROW_NUM | DATE |
| 1 | 01/01/1990 |
| 2 | 02/01/1990 |
| 3 | 03/01/1990 |
...
| 99 | 30/12/1999 |
|100 | 31/12/1999 |
(I.e. ROW_NUM is a hard coded column in the database).
If I run a SQL command which as such:
SELECT *
WHERE DATE = '30/12/1999'
How would I go about returning the date column of row 90 - 99? (I.e. I would want the resulting output to be the dates from 21/12/1999 to 30/12/1999).
Any help would be much much appreciated!