[视频作者] Harold澂冰
[视频时长] 16:26
[视频类型] 计算机技术
create table 表名(); insert into 表名(字段名1, 字段名2) values ('更改值1', '更改值2'); update 表名 set 字段名1 = 'xxx', 字段名2 = 'xxx' where 限制条件(如stuid = 2); delete from 表名 where 限制条件; select 字段名1, 字段名2 from 表名 where 限制条件; truncate 表名; delete from 表名; drop table 表名;