[Datensätze zählen] Wo ist der Fehler..?

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

  • #31
    Ja $fid (Forum-ID), aber nicht $tid (Topic-ID).

    ergo : die Abfrage kann nicht gehen, da du sagtest es müsse $tid in beiden Tabellen vorhanden sein. $tid ist aber nur in der Tabelle answers


    -----

    Ich teste trotzdem mal

    Kommentar


    • #32
      tid aus der answers bezieht sich doch auf eine dortige spalte (in der tab threads)=. oder?

      wie heisst dir?
      INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


      Kommentar


      • #33
        $tid aus Tabelle answers ist mit der id aus der Tabelle thread verknüpft...

        ------------------

        Abfrage:
        Code:
        Fehler
        
        SQL-Befehl :  
        
        SELECT T.tid ThreadId, T.topic, COUNT( A.tid ) Posts
        FROM threads T
        LEFT OUTER JOIN answers A
        USING ( tid ) 
        WHERE T.fid = 1
        GROUP BY T.tid, T.topic
        LIMIT 0, 30 
        
        MySQL meldet: 
        
        
        Unknown column 'T.tid' in 'field list'

        Aber war auch klar, lag ja nicht an dir , sondern an dem fehlendem $tid


        Kommentar


        • #34
          bitte mit phpmyadmin testen
          Code:
          SELECT      T.id ThreadId,
                      T.topic,
                      COUNT(A.tid) Posts
          
          FROM        threads T
                          LEFT OUTER JOIN answers A ON (A.tid = T.id)
              
          WHERE       T.fid=1
          
          GROUP BY    T.id, T.topic
          INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


          Kommentar


          • #35
            S-T-R-I-K-E!!


            Kommentar


            • #36
              Du hast EINIGES bei mir gut!!!

              Danke für die lange Hilfe, war echt nett das du so lange drangeblieben bist!

              Kommentar


              • #37
                ok. diese EINE while schaffst du aber jetzt alleine. oder?
                INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


                Kommentar


                • #38
                  Ja, das müsste ich schaffen

                  Kommentar


                  • #39
                    hoffen wir doch mal. schliesslich war es bis hierher eine schwere geburt....

                    BTW:
                    ich schiebe das ganze mal nach sql....

                    *VERSCHIEB*
                    INFO: Erst suchen, dann posten![color=red] | [/color]MANUAL(s): PHP | MySQL | HTML/JS/CSS[color=red] | [/color]NICE: GNOME Do | TESTS: Gästebuch[color=red] | [/color]IM: Jabber.org |


                    Kommentar

                    Lädt...
                    X