程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql不支持select into解決

mysql不支持select into解決

編輯:MySQL綜合教程

mysql不支持select into解決   替代方案

 insert into newTableName(column1,column2)   select * from  oldTableName

INSERT INTO  `aw_daily_call_task`(tenantId,sub_product_name, 
call_type,call_date,expire_date,username,customer_type,start_date,end_date,budget,product_type) 
SELECT t1.`tenant_id` as tenantId, 
        t1.`sub_product_name`, 
        1 as call_type, 
        t1.`active_date` as call_date, 
        DATE_ADD(t1.`active_date`,INTERVAL 1 DAY) as expire_date, 
        t1.`link_man` as username, 
        1 as customer_type, 
        t1.`active_date`  as start_date, 
        DATE_ADD(t1.`active_date`,INTERVAL t1.`remain_day` DAY) as end_date, 
        1 as budget, 
        t1.`product_type` 
FROM `aw_old_products` t1

 


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved