所以我有一个名为web
的数据库,我在该数据库中有一个名为users
的表,其中包含行registered_time, updated_at
等等。现在我想在表{{}中添加新行1}}。试过:
users
但我收到错误。怎么了?谁能解释一下?谢谢!
答案 0 :(得分:0)
假设您要插入新用户并且您的列名是username和registered_time,那么您应该使用此sintax
{{1}}
答案 1 :(得分:0)
要添加新列,我们需要使用ALTER
ALTER TABLE `web`.`users`
ADD `nick` varchar(32) DEFAULT NULL ,
ADD pug_rp int(11) DEFAULT NULL ;
答案 2 :(得分:0)
如果你想在表“web.users”中添加一个新行,就这样做:
INSERT INTO web.users VALUES('your_registed_time1', 'your_updated_at1', etc );
INSERT INTO web.users VALUES('your_registed_time2', 'your_updated_at2', etc );