如何把這個查詢到的結果放到一張新錶中?
2014-03-13 15:26
提問者採納
表已經存在;追問:insert into 表名 (列名1.。。 列名n) select 列名1.。。。列名n from 表 where 條件
表不存在.
oracle
create table 新表明 as select 列名1.。。。列名n from 表 where 條件
sqlserver
select 列名1.。。。列名n
into 新錶名
from 表 where 條件
沒有原表,我通過select collection_date,pub_date,count(*) as 'sum' from r_time
group by pub_date,collection_date
這個語句得到的新錶,具體怎麼才能放到一張新錶中,能不能寫詳細點?
追答:
oraclecrate table 新錶名
select collection_date,pub_date,count(*) as 'sum' from r_time
group by pub_date,collection_date
sqlserver
select collection_date,pub_date,count(*) as 'sum'
into 新錶名
from r_time
group by pub_date,collection_date
提問者評價
謝謝!
python查詢mysql的結果如何賦值給變數?
直接賦值給變數就可以了啊,mysql查詢的結果是乙個tuple元組,可以直接賦值給變數,下面我大概介紹一下利用python查詢mysql的過程,如何將結果賦值給乙個變數,並且列印出查詢的結果,實驗環境win7 python3.6 mysql5.5 pycharm5.0,主要內容如下 為了方便演示,我...
mysql查詢結果翻轉 如何把sql結果集翻轉
我用的是sql 請教如何把sql結果集翻轉?如下一張表 checkinout 顯示員工簽到,簽退的考勤表,checktype 考勤型別 i 表示簽到,o 表示簽退 timeflag 4表示上午,5表示下午 checktime 簽到,籤 userid checktype checktime timef...
Sql分組查詢,如何把縱向顯示的結果變成橫向顯示
建庫並錄入資料 create table booklibary 圖書館 varchar 10 科目 varchar 10 數量 int insert into booklibary select a 語文 5 union all select b 數學 6 union all select c 英語...