摘要:
PL/SQL导入sql文件:1.点击新建 2.命令窗口 3.@+回车 4.选择导入的sql文件 Create table test_table as select *from dev_table 复制一个临时表(并且复制表里的数据) Create table test_table as select 阅读全文
摘要:
基础函数 select * from table order by id nulls first/last 将id是空值的放在首位还是末尾 select nvl2(val1,val2,val3) from dual 如果val1是null,则返回nvl3,否则返回nvl2 select coales 阅读全文
摘要:
select to_date('2023-11-03','YYYY-MM-DD')+(LEVEL-1) *INTERVAL '15' MINUTE from dual connect by level<=96; 获取间隔15分钟的时间段 select to_char(TRUNC(to_date('2 阅读全文