Hi guys,
how does one set the PRIORITIES when sorting rows?
I have records that i primarily sort with dates (yyyymmdd)... i can't avoid 2 or more rows having the same dates.. that's ok.. however, everytime i select the rows with:
SELECT * FROM mytbl ORDER BY mydate DESC
mysql seems to return rows with the same date in different orders and randomly..
So how do i tell mysql to sort by MYDATE column PRIMARILY, and then a specific column secondarily?
(or is this one of the features of indexing?)
tea