mysql用命令添加属性的方法:使用ADD子句来向数据表中添加列。
mysql用命令添加属性的示例:
MySQL中使用ADD子句来向数据表中添加列,代码如下:
mysql> alter table exmaple_alter_test add sex varchar(100);Query OK, 0 rows affected (1.06 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> show columns from exmaple_alter_test;
+-------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+--------------+------+-----+---------+-------+
| name | varchar(100) | YES | | NULL | |
| sex | varchar(100) | YES | | NULL | |
+-------+--------------+------+-----+---------+-------+
2 rows in set (0.00 sec)
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: mysql怎么更换字符串