摘要:
工作的时候没仔细检查sql直接执行了,将线上的数据弄错了,发现抓紧修改,还好只修改了一个表的一列; 在网上查了下oracle可以查询24小时任何时刻的数据 select * from btgl_ylbt_sqb t as of timestamp to_timestamp('2018-01-24 1 阅读全文
摘要:
--清空两个字符中间的空格 update IMPORT_TEST a set a.name = REGEXP_REPLACE(a.name,'( ){1,}', '') where a.reason is not null --字符串替换 update IMPORT_TEST a set a.nam 阅读全文