課程
/數據庫
/MySQL
/MySQL開發技巧(一)
update user1 as a,user2 as b set a.over='齊天大圣'? where a.user_name=b.user_name;
2015-08-28
源自:MySQL開發技巧(一) 2-6
正在回答
update user1 set over='xx' where user_name=(select user_name from user2) 這樣會不會好點?
qq_LeapFrog_1
舉報
DBA和開發人員都必備的技能,SQL技巧一個好程序員必備技能
1 回答這和 where a.name=b.name 有啥區別呢是效率搞么
4 回答where 和 join on有什么區別啊.都能達到同樣的效果.
1 回答效率問題,求解
3 回答視頻的數據表結構能帖出來嗎
1 回答數據量大時關聯查詢a.key is null 會降低查詢效率嗎
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯系客服咨詢優惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
2015-08-28
update user1 set over='xx' where user_name=(select user_name from user2) 這樣會不會好點?