香港云服务器mysql怎么用命令添加属性

已关闭留言

香港云服务器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)