标签:字段 values 默认值 from user nbsp mes select class
1.向表中插入数据操作
INSERT into user_info values(1, ‘fqq‘, ‘女‘) -- 插入数据,在user_info表中按照字段顺序进行插入数据,此时插入的字段不能少 INSERT into user_info(id, names) VALUES(2, ‘why‘) -- 插入数据,指定插入到user_info表中的id和name字段中,前提是剩余没有被插的字段必须有默认值 INSERT into user_info(id, names) VALUES(3, ‘w‘), (4, ‘wh‘) -- 一次插入多条数据 INSERT into user_info(names, sex) select `names`, sex from user_info where id = 1; -- 从user_info表中查询出来id为1的那一条记录,只要这条记录的name和sex字段,然后插入到user_info中
标签:字段 values 默认值 from user nbsp mes select class
原文地址:https://www.cnblogs.com/whylinux/p/9893077.html