您好,登錄后才能下訂單哦!
/**創(chuàng)建表**/ /**創(chuàng)建表1**/ CREATE?TABLE?`product`?( ??`id`?INT(10)?UNSIGNED?NOT?NULL?AUTO_INCREMENT, ??`amount`?INT(10)?UNSIGNED?DEFAULT?NULL, ??PRIMARY?KEY??(`id`) )?ENGINE=INNODB?AUTO_INCREMENT=1?DEFAULT?CHARSET=utf8; /**創(chuàng)建表2**/ CREATE?TABLE?`product_details`?( ??`id`?INT(10)?UNSIGNED?NOT?NULL, ??`weight`?INT(10)?UNSIGNED?DEFAULT?NULL, ??`exist`?INT(10)?UNSIGNED?DEFAULT?NULL, ??PRIMARY?KEY??(`id`) )?ENGINE=INNODB?DEFAULT?CHARSET=utf8; /**插入數(shù)據(jù)**/ INSERT?INTO?product(id,amount)?VALUES?(1,100),(2,200),(3,300),(4,400); INSERT?INTO?product_details(id,weight,exist)?VALUES?(2,22,0),(4,44,1),(5,55,0),(6,66,1); /**查詢數(shù)據(jù)**/ SELECT?*?FROM?product; SELECT?*?FROM?product_details;
一、左外鏈接查詢
/**左連接查詢**/ SELECT?*?FROM?product? LEFT?JOIN?product_details ON?(product.`id`?=?product_details.`id`);
(51CTO加水印真low!)
?SELECT?*?FROM?product?LEFT?JOIN?product_details ?????????ON?(product.id?=?product_details.id) ?????????AND?product_details.id=2;
這個查詢使用ON條件決定了從LEFT JOIN的product_details表中檢索符合的所有數(shù)據(jù)行。
SELECT?*?FROM?product?LEFT?JOIN?product_details ?????????ON?(product.id?=?product_details.id) ?????????WHERE?product_details.id=2;
這個查詢做了LEFT JOIN,然后使用WHERE子句從LEFT JOIN的數(shù)據(jù)中過濾掉不符合條件的數(shù)據(jù)行。
再看例子:
SELECT?*?FROM?product?LEFT?JOIN?product_details ???????ON?product.id?=?product_details.id ???????AND?product.amount=100;
所有來自product表的數(shù)據(jù)行都被檢索到了,但沒有在product_details表中匹配到記錄
(product.id = product_details.id AND product.amount=100 條件并沒有匹配到任何數(shù)據(jù))
?SELECT?*?FROM?product?LEFT?JOIN?product_details ???????ON?(product.id?=?product_details.id) ???????AND?product.amount=200
所有來自product表的數(shù)據(jù)行都被檢索到了,有一條數(shù)據(jù)匹配到了。
從上述可知:WHERE條件發(fā)生在匹配階段之后!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。