当前位置:Gxlcms > mysql > mysql怎么修改表名?

mysql怎么修改表名?

时间:2021-07-01 10:21:17 帮助过:37人阅读

本篇文章将和大家讲述如何快速修改mysql表名,有同样需要的朋友学习一下吧,希望你看后能有所帮助。

具体步骤:打开cmd->输入“mysql -u root -p”->输入密码,进入mysql->输入“alter table rename to/as new_tablename;”

下面的代码包括了创建表的过程:

#创建表结构.这样的建表方式,不仅仅是表的结构,连带着索引也会同时创建.
mysql> create table ts01 like ti_o_sms; 
Query OK, 0 rows affected (0.02 sec)

#修改表名的语法:alter table old_tablename rename to/as new_tablename;
mysql> alter table ts01 rename to ts01_new;
Query OK, 0 rows affected (0.00 sec)

mysql> show tables;                      
+--------------------+
| Tables_in_mytest   |
+--------------------+
| sms_send_blacklist |
| td_b_sendobject    |
| ti_o_sms        |
| ts01_new        |
+--------------------+
rows in set (0.00 sec)

相关教程:mysql视频教程

以上就是mysql怎么修改表名?的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行