SQL SELECT statement to query multiple tables
P粉680487967
P粉680487967 2023-08-24 17:30:36
0
2
522
<p>How to get all products from customers1 and customers2 (including their customer names)? </p> <pre class="brush:php;toolbar:false;">customer1 table cid name1 1 john 2 joe customer2 table cid name2 p1 sandy p2 linda product table pidcidpname 1 1 phone 2 2 pencil 3 p1 pen 4 p2 paper</pre> <p>The result should be like this</p> <pre class="brush:php;toolbar:false;">pid cid pname name1 name2 1 1 phone john NULL 2 2 pencil joe NULL 3 p1 pen NULL sandy 4 p2 paper NULL linda</pre></p>
P粉680487967
P粉680487967

reply all(2)
P粉473363527
SELECT pid, cid, pname, name1, name2 
FROM customer1 c1, product p 
WHERE p.cid=c1.cid 
UNION SELECT pid, cid, pname, name1, name2 
FROM customer2 c2, product p 
WHERE p.cid=c2.cid;
P粉826429907
SELECT p.pid, p.cid, p.pname, c1.name1, c2.name2
FROM product p
LEFT JOIN customer1 c1 ON p.cid = c1.cid
LEFT JOIN customer2 c2 ON p.cid = c2.cid
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!