Hello,
I know you can use MySQL's REGEXP functions in your WHERE clause, but what about your ORDER BY clause?
My database's "album" column has rows that look like:
This Is An Album (2001)
Another Album (1986)
Last Album (1999)
etc.
I want to use MySQL's ORDER BY clause to only sort the dates (the 2001, 1986, and 1999) and not the entire row.
I believe that REGEXP might be a solution, but I don't know if you can use it in your ORDER BY clause. Does anyone have any suggestions?
Thanks for any help.