表结构如下
create table test
(
id int,
xm varchar2(5),
age varchar2(3)
)
内有数据格式
id | xm | age |
1 | 张三 | 14 |
2 | 李四 | 20 |
查询语句
select * from test;#*号为返回全部字段
select id,xm from test;#返回两个字段
修改(更新语句)
update test set xm =‘奥里给‘ where id =‘1‘;#修改(更新)id-为1时,xm这列值为“奥里给”
删除语句
delete from test where id=‘1‘;#删除id为1的数据,当不加条件时为清空全表,数据量过大是建议使用truncate的清空方式
truncate table test;#清空数据表test的数据,不可恢复
插入语句
insert into test (id,xm,age) values(‘3‘,‘王五‘,‘21‘);#插入语句字段与值要一一对应,可以选择字段进行插入