What query do I need to run in PHP to get the structure of a given table in the database? And what query do I need to run to get a list of all the tables?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
To get a list of columns for a table, use the DESCRIBE SQL statement. The syntax is as follows:
To get a list of tables on the database, use this SQL statement:
|
||||
|
|
|
To get the CREATE syntax use
Also take a look in the information_schema database. Lots of very useful information about your databases, tables, indexes, etc. See: How to find all the tables in MySQL with specific column names in them? |
|||
|
|
found it at http://www.electrictoolbox.com/mysql-table-structure-describe/ |
|||
|
|