komiges Ergebniss ?

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

  • komiges Ergebniss ?

    meine Anweisung lautet:

    Code:
    SELECT * FROM `tabelle` WHERE `SPA` =61 AND `SPB` = '7' OR `SPB`='6'
    Die Ausgabe ist folgende
    Code:
    tabelle
    id 	SPA    fgroups  SPB
    773 	63 	0 	  6
    770 	62  	0 	  6
    761 	61 	0 	  6
    762 	61 	0 	  7
    Das ist aber nicht gewollt
    gewollt ist nur die Ausgabe wo SPA = 61 und SPB entweder 6 oder 7 ist.
    Code:
    tabelle
    id 	SPA  	fgroups  SPB
    761 	61  	0 	  6
    762 	61  	0 	  7
    habe ich hier ein Denkfehler oder was mach ich falsch ?

  • #2
    Code:
    SELECT * FROM `tabelle` WHERE `SPA` =61 AND (`SPB` = '7' OR `SPB`='6')
    MfG
    Freedom is a state of mind. Not a state in which we live.

    troxdev.ch | animefieber

    Kommentar


    • #3
      Klammern setzen!
      Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

      [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
      Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

      Kommentar


      • #4
        och nöööö...

        Danke dir ;-D

        Kommentar

        Lädt...
        X