Oracle小知识集锦
Oracle删除后的恢复savepoint a;delete from student ;rollback to a;Oracle中修改日期格式alter session set nls_date_format="yyyy-mm-dd"Oracle中查询字段为空或不为空的记录select * from student where birthday is nullselect * from student where birthday is not null...