You can get records from a table using 'SELECT' statement on MySQL, but what about getting the structure of the table itself?
To get table structure on MySQL, you can use 'DESCRIBE' command/statement, like this:
DESCRIBE [table name]
DESCRIBE employee
DESCRIBE users
No comments:
Post a Comment