组合权限查询 SQL,UniGUI

Posted hopesun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了组合权限查询 SQL,UniGUI相关的知识,希望对你有一定的参考价值。

组合权限查询 SQL,UniGUI:

   name ,View, New, Edit, Dele      表 获取 name 的 授权。

   项目         1       0       0      0

   项目         1      0       0       1  

   合同         1      1       0      0

   合同         1      0       0      1

=========================    

 方式1:select name, max(case when b=1 then 1 else 0 end) as b , max(case when c=1 then 1 else 0 end) as c from test
group by name 
 
方式2: select name, max(case b when 1 then 1 else 0 end) as b , max(case c when 1 then 1 else 0 end) as c from test
group by name 

 


以上是关于组合权限查询 SQL,UniGUI的主要内容,如果未能解决你的问题,请参考以下文章

构建 SQL 连接的麻烦

组合查询时的 SQL-server 语法错误(传递查询)

组合 SQL 查询 [重复]

SQL教程

SQL学习之组合查询(UNION)

SQL查询组合[关闭]