本随笔主要讲oracle数据库一些最基本的行操作:
1、查:select + 需要查询的列 + from + 表名 + where + 条件
如: select a.* from a where a.firstlow = 1
2、增:insert into + 表名称(low1,low2.....,lown) + values(value1,value2......,valuen)
3、删:有2种方法:
(1)删除行:delete from +表名 + where + 条件
(2)清空列数据:update 表名 set 列名 = ‘null‘
4、改:
update 表名 set 列名 = 内容
原文:http://www.cnblogs.com/JulianLi/p/4367560.html