想要將用戶從表(re_user)導入到另一個表(pg_users)。 你能幫我嗎? Thnx。在mysql中導入/導出表
INSERT INTO `pg_users`(`id`, `fname`, `sname`, `status`, `confirm`, `login`,
`password`, `lang_id`, `email`, `date_birthday`, `date_last_seen`,
`date_registration`, `root_user`, `guest_user`, `login_count`, `active`,
`show_info`, `phone`, `user_type`, `access`, `version_message_count`, `rating`,
`about_me`, `social_data`, `date_modified`)
SELECT `id`, `fname`, `sname`, `status`, `confirm`, `login`, `password`, `lang_id`,
`email`, `date_birthday`, `date_last_seen`, `date_registration`, `root_user`,
`guest_user`, `login_count`, `active`, `show_info`, `phone`, `user_type`,
`access`,`version_message_count`, `rating`, `about_me`, `social_data`,
`date_modified` FROM `re_user` WHERE 1
請提供您遇到的任何錯誤和/或您當前正在獲取的結果或簡單說明,以便更好地描述,爲什麼這不適合您。 –
請首先查看文檔:http://dev.mysql.com/doc/refman/5.0/en/insert-select.html – MillaresRoo
您在選擇查詢的where子句時遇到問題。 –