Geht das mit INNER JOIN?

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Geht das mit INNER JOIN?

    Hallo liebe Gemeinde, das Thema Joins scheint viele User zu beschäftigen, weil es da scheinbar sehr viele Möglichkeiten gibt, diese zu nutzen. Das Problem habe ich leider auch und Google kann mir da nicht weiterhelfen, da wohl jeder Fall seine eigenen Tücken hat und sehr speziell ist. In meinem Fall liegt es so, ich bekomme von meinem Lieferanten eine Preisliste (Tabelle "nord") mit 90.000 Datensätzen, ich dagegen benötige nur 900 die in einer anderen Tabelle (Tabelle "shop") stehen. Um die Preise zu vergleichen benutze ich folgende Abfrage, welche auch funktioniert:

    Code:
    [SIZE=2][COLOR=#ff0000][B][SIZE=2][COLOR=#ff0000]<?php[/COLOR][/SIZE][/B]
    [/COLOR][/SIZE][SIZE=2][COLOR=#800000][SIZE=2][COLOR=#800000]$query_string[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]= [/SIZE][SIZE=2][COLOR=#0000f0][SIZE=2][COLOR=#0000f0]"SELECT[/COLOR][/SIZE]
    [SIZE=2][COLOR=#0000f0]a.Artikelnummer, a.ManufacturerName, a.Herstellernummer, a.Description, a.ProductGroup, a.Preis, b.price AS kategorie [/COLOR][/SIZE]
    [SIZE=2][COLOR=#0000f0]FROM nord AS a[/COLOR][/SIZE]
    [SIZE=2][COLOR=#0000f0]INNER JOIN[/COLOR][/SIZE]
    [SIZE=2][COLOR=#0000f0]shop AS b[/COLOR][/SIZE]
    [SIZE=2][COLOR=#0000f0]ON a.Artikelnummer = b.Nummer"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000];[/COLOR][/SIZE]
    [/COLOR][/SIZE][SIZE=2][COLOR=#800000][SIZE=2][COLOR=#800000]$query[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]= mysql_query[/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]([/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#800000][SIZE=2][COLOR=#800000]$query_string[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]);[/COLOR][/SIZE]
    [SIZE=2][COLOR=#ff0000][B]?>[/B][/COLOR][/SIZE]
    [/COLOR][/SIZE][SIZE=2][COLOR=#c0c000][SIZE=2][COLOR=#c0c000]<h1>Shop</h1>[/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000]<table width="1200" cellspacing="0" cellpadding="5">[/COLOR][/SIZE]
    [/COLOR][/SIZE][B][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]<?php[/COLOR][/SIZE][/COLOR][/SIZE][/B]
    [SIZE=2][B]while[/B][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]([/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#800000][SIZE=2][COLOR=#800000]$data[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]= mysql_fetch_object[/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]([/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#800000][SIZE=2][COLOR=#800000]$query[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000])){[/COLOR][/SIZE]
    [SIZE=2][COLOR=#ff0000][B]?>[/B][/COLOR][/SIZE]
    [/COLOR][/SIZE][SIZE=2][COLOR=#c0c000][SIZE=2][COLOR=#c0c000]<tr>[/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000]<td style="border: 1px solid #ff0000;"><b>[/COLOR][/SIZE]
    [/COLOR][/SIZE][B][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]<?php[/COLOR][/SIZE][/COLOR][/SIZE][/B]
    [SIZE=2][B]print[/B] [/SIZE][SIZE=2][COLOR=#800000][SIZE=2][COLOR=#800000]$data[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]->[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]Artikelnummer[/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000] .[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000f0][SIZE=2][COLOR=#0000f0]""[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000];[/COLOR][/SIZE]
    [SIZE=2][COLOR=#ff0000][B]?>[/B][/COLOR][/SIZE][/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000][SIZE=2][COLOR=#c0c000]</b></td>[/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000]<td style="border: 1px solid #ff0000;">[/COLOR][/SIZE]
    [/COLOR][/SIZE][B][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]<?php[/COLOR][/SIZE][/COLOR][/SIZE][/B]
    [SIZE=2][B]print[/B] [/SIZE][SIZE=2][COLOR=#800000][SIZE=2][COLOR=#800000]$data[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]->[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]Herstellernummer[/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000] .[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000f0][SIZE=2][COLOR=#0000f0]""[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000];[/COLOR][/SIZE]
    [SIZE=2][COLOR=#ff0000][B]?>[/B][/COLOR][/SIZE][/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000][SIZE=2][COLOR=#c0c000]</td>[/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000]<td style="border: 1px solid #ff0000;">[/COLOR][/SIZE]
    [/COLOR][/SIZE][B][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]<?php[/COLOR][/SIZE][/COLOR][/SIZE][/B]
    [SIZE=2][B]print[/B] [/SIZE][SIZE=2][COLOR=#800000][SIZE=2][COLOR=#800000]$data[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]->[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]Description[/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000] .[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000f0][SIZE=2][COLOR=#0000f0]""[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000];[/COLOR][/SIZE]
    [SIZE=2][COLOR=#ff0000][B]?>[/B][/COLOR][/SIZE][/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000][SIZE=2][COLOR=#c0c000]</td>[/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000]<td style="border: 1px solid #ff0000;">[/COLOR][/SIZE]
    [/COLOR][/SIZE][B][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]<?php[/COLOR][/SIZE][/COLOR][/SIZE][/B]
    [SIZE=2][B]print[/B] [/SIZE][SIZE=2][COLOR=#800000][SIZE=2][COLOR=#800000]$data[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]->[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]ManufacturerName[/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000] .[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000f0][SIZE=2][COLOR=#0000f0]""[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000];[/COLOR][/SIZE]
    [SIZE=2][COLOR=#ff0000][B]?>[/B][/COLOR][/SIZE][/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000][SIZE=2][COLOR=#c0c000]</td>[/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000]<td style="border: 1px solid #ff0000;">[/COLOR][/SIZE]
    [/COLOR][/SIZE][B][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]<?php[/COLOR][/SIZE][/COLOR][/SIZE][/B]
    [SIZE=2][B]print[/B] [/SIZE][SIZE=2][COLOR=#800000][SIZE=2][COLOR=#800000]$data[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]->[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]ProductGroup[/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000] .[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000f0][SIZE=2][COLOR=#0000f0]""[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000];[/COLOR][/SIZE]
    [SIZE=2][COLOR=#ff0000][B]?>[/B][/COLOR][/SIZE][/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000][SIZE=2][COLOR=#c0c000]</td>[/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000]<td align="right" style="border: 1px solid #ff0000;"> [/COLOR][/SIZE]
    [/COLOR][/SIZE][B][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]<?php[/COLOR][/SIZE][/COLOR][/SIZE][/B]
     
    [SIZE=2][B]print[/B] [/SIZE][SIZE=2][COLOR=#800000][SIZE=2][COLOR=#800000]$data[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]->[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]Preis[/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000] .[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000f0][SIZE=2][COLOR=#0000f0]""[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000];[/COLOR][/SIZE]
    [SIZE=2][COLOR=#ff0000][B]?>[/B][/COLOR][/SIZE]
    [/COLOR][/SIZE][SIZE=2][COLOR=#c0c000][SIZE=2][COLOR=#c0c000]</td>[/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000]<td style="border: 1px solid #ff0000;"> [/COLOR][/SIZE]
    [/COLOR][/SIZE][B][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]<?php[/COLOR][/SIZE][/COLOR][/SIZE][/B]
    [SIZE=2][B]print[/B] [/SIZE][SIZE=2][COLOR=#800000][SIZE=2][COLOR=#800000]$data[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]->[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]kategorie[/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000] .[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#0000f0][SIZE=2][COLOR=#0000f0]""[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000];[/COLOR][/SIZE]
    [/COLOR][/SIZE][SIZE=2][B]print[/B] [/SIZE][SIZE=2][COLOR=#0000f0][SIZE=2][COLOR=#0000f0]"<br/>"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000];[/COLOR][/SIZE]
    [SIZE=2][COLOR=#ff0000][B]?>[/B][/COLOR][/SIZE]
    [/COLOR][/SIZE][SIZE=2][COLOR=#c0c000][SIZE=2][COLOR=#c0c000]</td>[/COLOR][/SIZE]
    [SIZE=2][COLOR=#c0c000]</tr> [/COLOR][/SIZE]
    [/COLOR][/SIZE][B][SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]<?php[/COLOR][/SIZE][/COLOR][/SIZE][/B]
    [SIZE=2][COLOR=#ff0000][SIZE=2][COLOR=#ff0000]}[/COLOR][/SIZE]
    [SIZE=2][COLOR=#ff0000][B]?>[/B][/COLOR][/SIZE]
    [/COLOR][/SIZE][SIZE=2][COLOR=#c0c000][SIZE=2][COLOR=#c0c000]</table><br/></br>[/COLOR][/SIZE]
    [/COLOR][/SIZE]
    Jetzt werden die Daten anhand der Artikelnummern verglichen, klappt wunderbar. Leider werden nur Datensätze ausgegeben, die auch übereinstimmen. Hat mein Lieferant einen Artikel nicht mehr in seiner Preisliste, kann ich es nicht sehen, da nur Übereinstimmungen angezeigt werden. Wie muss eine Abfrage aussehen, damit mir angezeigt wird, welche Datensätze aus der Tabelle "shop" nicht in der Tabelle "nord" vorhanden sind? INNER JOIN kommt da ja nicht in Frage. Kann mir jemand eine Erklärung geben?

    Ich hoffe mir kann jemand weiterhelfen. Vielen Dank schonmal.

  • #2
    Hallo,

    bitte hier im SQL-Bereich keinen PHP-Code posten. Der ist nicht nur unnötig, sondern stört auch. Es geht ja bei deinem Problem auch nur um SQL.

    Wenn du einen LEFT JOIN nimmst, bekommst du die Spalten der shop-Tabelle alle als null, wenn es keine Übereinstimmung gibt. Mit einer entsprechenden WHERE-Klausel kannst du ganz gezielt die Datensätze selektieren, wo rechts die shop-ID null ist und hast damit alles aus nord ohne einen shop. Wenn das zu kompliziert klingt, fang einfach in PHPMyAdmin an, mit einem LEFT JOIN zu experimentieren, den Rest siehst du dann schon.

    Gruß,

    Amica
    [COLOR="DarkSlateGray"]Hast du die [COLOR="DarkSlateGray"]Grundlagen zur Fehlersuche[/color] gelesen? Hast du Code-Tags benutzt?
    Hast du als URL oder Domain-Beispiele example.com, example.net oder example.org benutzt?
    Super, danke!
    [/COLOR]

    Kommentar


    • #3
      Sorry wegen dem Code, hab ich wohl übersehen, dass das nicht angebracht ist.
      Trotzden Dank für deine Antwort. Meine Fragestellung war eigentlich umgekehrt oder verstehe ich Dich jetzt falsch. Ich benötige keine Ausgabe aus nord, das wären ja 99.100 Datensätze. Ich benötige von den 900 Datensätzen die Ausgabe, welche von den 900 nicht in den 90.000 existieren. Also sollte mir angezeigt werden z.B. Artikelnummer "12345" aus Tabelle "shop" ist in Tabelle nord nicht vorhanden.
      Grüße

      Kommentar


      • #4
        Na gut, dann joinst du halt anders herum von shop nach nord statt von nord nach shop. Kommt aber vom Lösungsweg her auf dasselbe raus.
        [COLOR="DarkSlateGray"]Hast du die [COLOR="DarkSlateGray"]Grundlagen zur Fehlersuche[/color] gelesen? Hast du Code-Tags benutzt?
        Hast du als URL oder Domain-Beispiele example.com, example.net oder example.org benutzt?
        Super, danke!
        [/COLOR]

        Kommentar


        • #5
          ooookay!

          @AmicaNoctis
          jetzt stehe ich vor einem weiteren Problem, leider Ich möchte diese ganzen Daten aus 6 weiteren Tabellen abrufen. Wie kann ich alle 6 Tabellen verknüpfen, damit ich sehe ob die Daten in shop in den Tabellen nord, süd, ost, west, etc. vorhanden sind?
          Ich bin Shopbetreiber und kein Programmierer, kannst Du mir auf die Sprünge helfen?

          Grüße Erik

          Kommentar


          • #6
            Man kann auch mehrere Tabellen in derselben Abfrage joinen. Wie das genau aussehen muss, kann ich dir anhand der gegebenen Informationen nicht sagen.

            Vermutlich solltest du dir aber überlegen, einen Programmierer zu engagieren, damit es richtig wird. Wenn man ohne Fachkenntnis an einem Shop rumbastelt, sollte man sich der damit verbundenen Gefahren bewusst sein, die von schiefgegangenen Transaktionen bishin zu Hackerangriffen reichen.
            [COLOR="DarkSlateGray"]Hast du die [COLOR="DarkSlateGray"]Grundlagen zur Fehlersuche[/color] gelesen? Hast du Code-Tags benutzt?
            Hast du als URL oder Domain-Beispiele example.com, example.net oder example.org benutzt?
            Super, danke!
            [/COLOR]

            Kommentar

            Lädt...
            X