查询数据库隐含参数的sql语句

select
   x.ksppinm  name,
   y.ksppstvl  value,
   y.ksppstdf  isdefault,
   decode(bitand(y.ksppstvf,7),1,'MODIFIED',4,'SYSTEM_MOD','FALSE')  ismod,
   decode(bitand(y.ksppstvf,2),2,'TRUE','FALSE')  isadj
 from
   sys.x$ksppi x,
   sys.x$ksppcv y
 where
   x.inst_id = userenv('Instance') and
   y.inst_id = userenv('Instance') and
   x.indx = y.indx and
    translate(x.ksppinm,'_','~') like '~%'
 order by
   translate(x.ksppinm, ' _', ' ');
请使用浏览器的分享功能分享到微信等