程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 從一個數據庫,獲取數據轉存到另一個數據庫。,另一個數據庫

從一個數據庫,獲取數據轉存到另一個數據庫。,另一個數據庫

編輯:MySQL綜合教程

從一個數據庫,獲取數據轉存到另一個數據庫。,另一個數據庫


1 INSERT INTO `game_2015newterm_user` (`uid`, `lq`, `xm`, `ct`, `by`, `lj`, `xmlbq`, `ctlbq`, `bylbq`, `ljlbq`, `tdate`) select uid, '0', '3', '0', '0', '0', '0', '0', '0', '0', '2015-03-16' from game_2015school_user  

從表game_2015school_userzhong獲取用戶id,使用常量select查詢構造字段數據。

INSERT INTO `event_2125`.`game_2015newterm_user` (`uid`, `lq`, `xm`, `ct`, `by`, `lj`, `xmlbq`, `ctlbq`, `bylbq`, `ljlbq`, `tdate`, `uptime`) VALUES ((select uid from game_2015school_user where uid=608035003 ), '0', '0', '0', '0', '0', '0', '0', '0', '0', '2015-03-16', CURRENT_TIMESTAMP);

錯誤。 insert select 不能使用values, 並且 select uid from ... 獲取的數據不是唯一值。

 

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