我 有这样一张table:
+-------+---------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+---------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| post | int(11) | NO | | NULL | |
| liker | int(11) | NO | | NULL | |
+-------+---------+------+-----+---------+----------------+
我想把它改成:
+----------+---------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------+---------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| post_id | int(11) | NO | MUL | NULL | |
| liker_id | int(11) | NO | MUL | NULL | |
+----------+---------+------+-----+---------+----------------+
我 知道如何使用phpmyadmin更改字段名。但不知道如何添加 MUL
他们的钥匙?
1条答案
按热度按时间twh00eeo1#
可以使用重命名列
change column
,并使用add index
:改变
TheTable
按您的表名。