mysql檢視建表過程的方法:執行【show create table table_name;】語句即可檢視。如果要檢視資料表的結構,可以執行【desc student;】命令。
檢視表的建立過程:(show create table table_name;<table_name是表名>)
(推薦教學:)
show create table student;
如圖:
檢視資料表的結構,命令比較簡單:(desc table_name;<table_name是表名>)
desc student;
相關推薦:
以上就是mysql怎麼檢視建表過程的詳細內容,更多請關注TW511.COM其它相關文章!