MySQL的插入语句

背景:

增删改查,其中“增”就是MySQL的插入语句,关键字是insert into

 测试用的表就学MySQL聚集函数时建的表:MySQL的聚集函数

插入语句有以下三种写法

第一种,插入一条语句,这种写法简单,但是需要插入值的顺序与表定义的列的顺序相对应。不能错位,不太安全。因为插入语句没有值返回,一般操作完查询验证一下

insert into gather value ('lemon','6','柠檬');

MySQL的插入语句

第二种就是将列名一一列出来

insert into gather(name,price,remark) value ('grape','10','葡萄');

MySQL的插入语句

第三种,一次性插入多条信息

insert into gather(name,price,remark) value ('avocado','15','牛油果') ,('chestnut','20','栗子');

MySQL的插入语句

第四种,将其他查询得到的结果作为插入语句的值,一般查询和插入不是同一张表,我这为了简便使用了同一张目的是为了将查询的结果作为值插入进去

insert into gather(name,price,remark) select * from gather where name ='pear';

MySQL的插入语句

 

上一篇:torch.gather


下一篇:input框 禁止输入空格