1樓:匿名使用者
不知道理解的對不對,有問題再問我吧
create table button(button_id varchar(10))
gocreate table [user](user_id varchar(10))
gocreate table user_button(user_id varchar(10),button_id varchar(10))
goinsert into dbo.button
( button_id )
select
1001
union all
select
1002
union all
select
1003
union all
select
1004
goinsert into [dbo].[user]
( [user_id] )
select
1union all
select
2insert into dbo.user_button
( user_id, button_id )
select 1,1002
union all
select 1,1003
go查詢語句
結果:button_id checked
1001 0
1002 1
1003 1
1004 0
2樓:匿名使用者
select *,'有點
來擊自許可權' checked
from button where button_id in (select button_id from user_button where user_id=你的id)
3樓:匿名使用者
說明一下每個表有哪些欄位吧
sql語句問題,sql語句問題
group by是分組函式 描述可能不準確 count是聚合函式,一定要確定分組的維度,才能在該維度下使用聚合函式進行統計,你要新增dname,那麼dname應該和deptno一起作為統計的維度,又dname在dept表中需要進行表關聯,所以 sql select deptno,dname,coun...
求教一條sql語句該如何寫,求教個SQL語句寫法,關於去top10的選擇
select a.id,b.name,a.id2,c.namefrom 表1 a,表2 b,表2 c where a.id b.id and a.id2 c.id 語句 select table1.id,a1.姓名,table1.id1,a2.姓名 from table1 inner join ta...
c模糊查詢sql語句怎麼寫c裡SQL模糊查詢
假設有表名稱 tb student 欄位 id,編號 name 學生姓名 性別 要求 根據文字框 txt inputname 輸入的值,進行學生名稱的模糊查詢。偽 獲取文字框的值作為查詢條件 string filtername txt inputname.text.trim 查詢語句 string ...