我想知道如何显示不同用户角色的表格?
我的数据库表格列:
id user comment groupid
我的groupid
值为:
但它显示了agent
和user
的所有表格数据。
我该怎么做?
答案 0 :(得分:0)
Select * From {Table Name} where groupid not in (1)
1就像管理员组ID一样。
其他显示方式
select * from {Table Name} where groupid in {2,3}
here 2 = agent
3 = user