在数据表中增加一列,并为其添加值
2016-07-08 18:05 sophia194910 阅读(788) 评论(0) 编辑 收藏 举报增加一列:
mysql> ALTER TABLE orderitems ADD f_id INT;
Query OK, 16 rows affected (0.04 sec)
Records: 16 Duplicates: 0 Warnings: 0
添加值:
mysql> UPDATE orderitems SET f_id=100 WHERE o_num=10001;
Query OK, 1 row affected (0.28 sec)
Rows matched: 1 Changed: 1 Warnings: 0
我所喜欢的生活,在混沌中顿悟,和喜欢的一切在一起。