日常问题

---1.查询索引属于哪个表

select * from user_indexes where index_name ='索引名称'

 

---2.查询系统中所有的索引

select * from user_objects where object_type='INDEX'

 

---3.查询表中不连续的ID是多少
select * from (select * from yplx_pur) t where not exists (select 1 from yplx_pur where ID=t.ID-1)

 

---4.如何将日期区间转为固定值

decode(sign((trunc(a.validdate)-trunc(sysdate)+1) - 0),-1,'low',decode(sign((trunc(a.validdate)-trunc(sysdate)+1) - 30), -1, 'middle', 'high')) as diftday      ----2020-09-23 颜色变化

posted @ 2021-04-27 09:48  ling827  阅读(52)  评论(0)    收藏  举报