Heim  >  Fragen und Antworten  >  Hauptteil

SQL SELECT-Anweisung zum Abfragen mehrerer Tabellen

<p>Wie erhalte ich alle Produkte von Kunden1 und Kunden2 (einschließlich der Kundennamen)? </p> <pre class="brush:php;toolbar:false;">customer1-Tabelle CID-Name1 1 Johannes 2 Joe customer2-Tabelle CID-Name2 p1 sandig p2 Linda Produkttabelle pidcidpname 1 1 Telefon 2 2 Bleistift 3 p1 Stift 4 S. 2 Papier</pre> <p>Das Ergebnis sollte so aussehen</p> <pre class="brush:php;toolbar:false;">pid cid pname name1 name2 1 1 Telefon John NULL 2 2 Bleistift Joe NULL 3 p1 Stift NULL sandig 4 p2 Papier NULL linda</pre></p>
P粉680487967P粉680487967445 Tage vor576

Antworte allen(2)Ich werde antworten

  • P粉473363527

    P粉4733635272023-08-25 11:18:02

    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;

    Antwort
    0
  • P粉826429907

    P粉8264299072023-08-25 09:01:05

    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

    Antwort
    0
  • StornierenAntwort