摘要:
我想查出datatype 不等于1的所有结果,包括空。 select * from user where datatype <> '1'; //这条sql查不出datatype为空的数据 发现oracle需要使用 is null 、is not null查询空或非空 select * from us 阅读全文
摘要:
begin 1、查询commit之前的数据(这一步是为了确认第3步的回退时间) select * from 表名 as of timestamp to_timestamp('2018-07-25 11:35:00', 'yyyy-mm-dd hh24:mi:ss'); 2、启用行移动功能(这一步必须 阅读全文