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