insert into tbl_total_r(code,salary,tm,yr,mnth,day)
( select code,sum(drp) salary,to_date('2011-07-10','yyyy-mm-dd hh24-mi-ss') tm ,
substr('2011-07-10',0,4) yr,
substr('2011-07-10',6,2) mnth,
substr('2011-07-10',9,2) day
from tbl_salary_r
where tm>to_date('2011-07-10','yyyy-mm-dd hh24-mi-ss')
and to_date('2011-08-10','yyyy-mm-dd hh24-mi-ss')>=tm
group by stcd, to_date('2011-07-10','yyyy-mm-dd hh24-mi-ss')
將查詢的資訊, 插入到另一張表中
sql2000 基本刪除,插入,查詢
insert into table1 name subject,class values 我的名字 英語 3 select from table1 insert into table1 subject,class values 英語 3 update table1 set name where is...
Android通過php插入查詢SQL資料庫
php header content type text html charset gb2312 servername localhost 資料庫伺服器位址 uid mssqla 資料庫使用者名稱 pwd 123456 資料庫密碼 connectioninfo array uid uid,pwd p...
Mybatis 模糊查詢 動態sql 插入回填
方式一 用 selectuser parametertype com.gec.bean.user resulttype com.gec.bean.user select from t user where address like select 方式二 用 value 然後傳入引數時加入 selec...