mysql查看建表过程的方法:执行【show create table table_name;】语句即可查看。如果要查看数据表的结构,可以执行【desc student;】命令。
![mysql怎么查看建表过程](https://img.php.cn/upload/article/202010/13/2020101314263421817.jpg)
查看表的创建过程:(show create table table_name;)
(推荐教程:mysql视频教程)
show create table student;
登录后复制
如图:
![1602570465373784.png 61c95e49c455d809dde369be85a4a34.png](https://img.php.cn/upload/image/372/136/495/1602570465373784.png)
查看数据表的结构,命令比较简单:(desc table_name;)
![1602570501635354.png d01db3b427e2f769ba02fb1492fc79c.png](https://img.php.cn/upload/image/976/521/532/1602570501635354.png)
相关推荐:mysql教程
以上是mysql怎么查看建表过程的详细内容。更多信息请关注PHP中文网其他相关文章!