The method to view the sql statement of the table structure is:
Oracle view table structure
1. Command window: desc table name
2.sql window: select * from user_tab_columns where table_name='uppercase table name';
##MySQL view table structure
1.View table structure: desc table name
Recommended tutorial: "mysql tutorial"
The above is the detailed content of What is the sql statement to view the table structure?. For more information, please follow other related articles on the PHP Chinese website!