I'm working on a forum right now and the way I have it set up is every new post creates a new table, and subsequent replies create new values in the newly created table.
So my problem is this - while replies work fine because they naturaly come below the original post, I have a problem order tables instead of fields within the tables.
The only table commands in SQL I know of are:
ADD TABLE
DROP TABLE
SHOW TABLE
ALTER TABLE
But I'm not sure of any way to get this (psuedo code):
SHOW TABLES ORDER BY DESC;
How would I do this?
Ben