1樓:匿名使用者
這樣試試
select count(*) from `jtwh_zb_guzhang` where quick = "y" and gzok = "handling"
sql查詢兩個表中滿足某些條件的資料總數
2樓:匿名使用者
如果欄位一樣的話,可以用union all,即select * from 表1 where a,b,cunion all
select * from 表2 where a,b,c
3樓:匿名使用者
假設兩張表分別為tab1,tab2:
select sum(cnt) from (select count(1) cnt from tab1 where 滿足條件a,b,c
union all
select count(1) cnt from tab2 where 滿足條
件a,b,c)
4樓:匿名使用者
select
(select count(*) from t1 where ...)
+(select count(*) from t2 where ...)
5樓:移動引領生活
select count(欄位a) from table1 where a and b and c
union al
lselect count(欄位b) from table2 where a and b and c
sql 先查詢滿足第一個條件之後 再滿足第二個條件
6樓:匿名使用者
不清楚你要的查詢結果究竟是怎樣的,按你問題的描述,你直接令id_del=n不就行了?
sql兩個表多列聯合查詢,sql語句 同時查詢兩個表
select a.b.備註 from select 姓名,一班,一班 as 班級 from 課程 表 union all select 姓名,二班,二班 as 班級 from 課程 表 union all select 姓名,三班,三班 as 班級 from 課程 表 a left join 流水錶...
SQL中兩個日期的查詢語句怎麼寫
1 建立測試表,create table test date id int,v date date 2 插入測試資料 insert into test date values 1,str to date 2016 01 02 y m d insert into test date values 2,...
兩個SQL語句的差值
select value,max time min time from d live data where field id 156 group by value 這樣嗎bai du,你之前那zhi 個不daogroup by能執行 回成功嗎?答 在sql語句中怎樣計算出兩個日期的差值 在sql語句...