Oracle—-数据表内容操作

###直接插入数据
insert into t1(id,name,tel) values (‘1‘,‘linux‘,‘13812341234‘);

##直接针对需要改动的点进行修改
update t1 set tel=‘15512345678‘ where tel=‘13812341234‘;

//查询多个条件
select from emp where comm is not null and sal >1500