1樓:匿名使用者
insert into b(id,des,[<15],[>15],[>20])
select
d.id,d.des,a.num,b.num,c.num
from
(select count(*) num from a where age<15) a,
(select count(*) num from a where age>15)b,
(select count(*) num from a where age>20) c,
(抽出id,des的語句)d
不知道是不是你想要的
2樓:
insert into b([<15],[>15],[>20])select
a.num,b.num,c.num
from
(select count(*) num from a where age<15
union all
select count(*) num from a where age>15
union all
select count(*) num from a where age>20)b
有問題hi我
3樓:
insert into b (<15,>15,>20) values((select count(*) from a where age<15),(select count(*) from a where age>15),(select count(*) from a where age>20));
select 多條件查詢的問題
string sql select from individual grade base where 1 1 if textbox1.text.trim if textbox2.text.trim 這樣sql就拼出來了 set ansi nulls on set quoted identifier ...
sql怎麼用查詢結果作為條件進行查詢
1 查詢資料庫表的所有欄位並直接使用select語句。從資料庫表中選擇 2 查詢資料庫表的part部分欄位,可以使用select field命令,從資料庫表中選擇欄位名稱。3 根據條件查詢,使用後面的條件,加上從資料庫表中選擇條件名稱。4 使用distinct命令查詢資料庫欄位記錄中的非重複結果,從...
sql資料庫多條語句查詢結果合併輸出的問題
建立create proc p test rwmc varchar 30 gh varchar 40 asbegin select c.數量,c.資訊,c.id,c.版本,c.ip,c.次數,c.間隔,c.票換,c.黑名單,c.人數,c.備用1,c.備用2,c.狀態,c.ip段,a.票數1,b.票數...