1樓:匿名使用者
我個人覺得zhi應dao該可以這樣實現專:
declare @
屬pinpai varchar(50)
declare @fengge varchar(50)select *
from [表]
where [品牌] = case @pinpai when null then null else @pinpai end
or [風格] = case @fengge when null then null else @fengge end
2樓:
select * from table where 品牌='' or 風格=''
3樓:匿名使用者
查詢語句拼接字串啊~~~
4樓:匿名使用者
select * from table where (品牌=『條來件源' 條件 is null)and (風格=『條件' or 條件 is null)
在篩選的時候條件也可以是模糊查詢 like '%條件%' 形式的
比如 select * from table where 品牌 like '%'||傳入的條件||'%'
sql查詢語句怎麼寫,sql彙總查詢的語句怎麼寫啊
如果表裡只是那幾列資料的話 select a.欄位名,b.欄位名 from 表 as a left join 表 as b on a.substring 欄位名,7,2 b.substring 欄位名,7,2 where a.欄位名 like 201008 and b.欄位名 like 201009...
SQL查詢語句如何定義變數Sql中如何給變數賦值?
假設三個表 a,b,c,通過a中查出來的一個記錄來覺得下面去查b還是c表 declare varchar temp 10 select temp x from db a where if temp 0 select from db b where.else if temp 1 select from...
怎麼用SQL語句查詢student表中年齡最小
排序升序排列即可。例如 select from student order by 年齡 asc 急急急!怎麼用sql語句查詢student表中年齡最小的前三名學生資訊?select top 3 from student order by age asc top 3 是前3個學生的意思,order b...