时间:2021-07-01 10:21:17 帮助过:94人阅读
一、SQL语句之增
insert into 表的名字 (字段名)values(值);
向student表中插入一个学生的数据
insert into student (num,name,sex,age) values(140010,张三,男,23)
二、SQL语句之删
删除student表中num=140011的这条数据。
delete from student where num=140011;
三、SQL语句之改
我们可以将num为140010的age值更改为21。
update student set age =21 where ID=140010;
四、SQL语句之查
查询语句非常的重要的,所以需要详细来说一下。
1、查询student表中所有数据
select * from student;
2、查询student表中所有的name和sex
select name,sex from student;
3、查询num为140010这一行的数据
select * from where id =140010;
以上就是sql增删改查语句怎么写的详细内容,更多请关注Gxl网其它相关文章!