DML:
1.添加数据
insert into stu(id,name,age,score) values(1,'张无忌',20,100);
insert into stu values(2,'赵敏',17,99.0,null,null);-- 简化列名,意思就是全部数据
insert into stu values(3,'张三丰',87,99.0,"1988-08-08",null);
2.删除数据
Delete from stu where id=1;
(没有where , 删除所有数据)
truncate table stu;-- 删除表,后创建一个新表
3.修改数据
update stu set name="张无忌",age=12 (where id=1);
如果没有where,列被全部修改
4.查询数据
select * from 表名;
网友评论