1樓:李巨集
如果表的數量都不能確定,那麼就不是一件易事了
一兩句sql解決不了問題
2樓:
求id為123在20060801至20060804期間的銷售總和:
select id,sum(銷售額)
from (
select *from 20060801union
select *from 20060802union
select *from 20060803union
select *from 20060804)where id=123
group by id
或select id,sum(銷售額)
from (
select *from 20060801 where id=123union
select *from 20060802 where id=123union
select *from 20060803 where id=123union
select *from 20060804 where id=123)group by id
求一段從兩表中查資料的SQL語句
1 table1 中 tarea 為 cc 的資料 select from table1 where tarea cc 2 tabel2 中 aname 為 ff 的資料 select from tabel2 where aname ff 如果你的目的是只要第三步結果的話,直接使用下面這個 3 最後...
SQL查詢語句,表中兩個字段,相同另不同
select count from select 表1.a,sum 表1.b as bbfrom 表1 group by 表1.a as last where bb 1 因為true false 1 以上語句在access2003中通過。結果為1 只是不知道1個a 會不會有很多b狀態 比如1 tru...
如何用SQL語句將表中兩個欄位相同的記錄取出
貴高馳史飛 假設表1為table1 表2為table2 select a.col from select column name colfrom user tab columns where table name table1 a,select column name colfrom user ta...