Below is the field structure of my database table 'myTable'
ID (autonumber)
Title (text)
Featured (text)
DateandTime (date/time)
The field featured will either hold the value Y or N
I would like to execute an SQL statement which selects firstly all the records that have a Y in the Featured field - ordered by DateandTime DESC, and then go on and select all the rest of the records and ORDER by DateandTime DESC
Is this possible based on the set up of the table.
Thanks.
ID (autonumber)
Title (text)
Featured (text)
DateandTime (date/time)
The field featured will either hold the value Y or N
I would like to execute an SQL statement which selects firstly all the records that have a Y in the Featured field - ordered by DateandTime DESC, and then go on and select all the rest of the records and ORDER by DateandTime DESC
Is this possible based on the set up of the table.
Thanks.