本文摘自千锋教育编著的《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)
关注“千问千知”公众号(qwqz1000)
领取万元视频资料包,详情点击