mysql查看建表過程的方法:執行【show create table table_name;】語句即可查看。如果要查看資料表的結構,可以執行【desc student;】指令。
檢視表格的建立過程:(show create table table_name;
#(建議教學:mysql影片教學)
show create table student;
如圖:
看資料表的結構,指令比較簡單:(desc table_name;)
desc student;
相關推薦:mysql教學
以上是mysql怎麼查看建表過程的詳細內容。更多資訊請關注PHP中文網其他相關文章!