找不到我在其他地方準確找到的內容。將兩列從一張表複製到另一張
所以,我有表1
users
----------
id
username
password
bio
isuser
email
和表2
wp_users
----------
id
user_login
nice_username
password
email
有在 'wp_users' 表500行。我想將'id'和'user_login'複製到每個行的用戶表('id'和'username')中。
我該怎麼做? MySQL不是我的強項大聲笑。
更新:我更新了上面的表格,因爲我試圖簡化它,但作爲回報得到了錯誤的解決方案。
請參閱:http://stackoverflow.com/questions/11168402/mysql-copy-selected-fields-from-one-table-to-another –
沒有正確輸入我的問題。我沒有提到的表格中還有其他值。上面的答案只選擇一列插入到另一個表中,我想選擇兩個而不知道這個的格式。謝謝(我已更新我的問題) –
請參閱:http://stackoverflow.com/questions/11517913/how-to-copy-some-column-from-a-table-to-another-mysql –