oracle好用的decode語法
decode是一個蠻好用的函數,使用它可以使得sql變得簡潔,效果如下
select a.*,decode(a.role_rank,0,'超級管理員',1,'管理員',2,'用戶') as role_rank2,a.rowid from xx_fpca_avi_role a where 1=1 and status='N'
decode是一個蠻好用的函數,使用它可以使得sql變得簡潔,效果如下
select a.*,decode(a.role_rank,0,'超級管理員',1,'管理員',2,'用戶') as role_rank2,a.rowid from xx_fpca_avi_role a where 1=1 and status='N'