Oracle----数据表内容操作
Posted 小名的同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于Oracle----数据表内容操作的主要内容,如果未能解决你的问题,请参考以下文章