一.查询
select * from (select a,b from table order by c) where rownum<=1 --在table表中根据字段c排序查询,取第一条数据
select * from 表 where 字段 <> '123' or 字段 is null; --查询表中某字段不等于123或者空
commit; --提交指令(执行增删改后最好commit;一下)