這篇文章將會和大家講述如何快速修改mysql表名,有同樣需要的朋友學習一下吧,希望你看後能有所幫助。
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怎麼修改表名?的詳細內容。更多資訊請關注PHP中文網其他相關文章!