sql abfrage sortieren

stefan999

Grünschnabel
Hallo,
ich habe folgendes problem:

bei einer sql abfrage möchte ich gerne das ergebnis nach "title" sortiert angezeigt bekommen.

hier die abfrage:

if($qry) $result = sql_query("select tid, title, area, city, state from nuke_4naddress_book where (author='$userinfo[0]' OR access='alle') and ".$qry, $dbi) ;

ich habe einfach keine idee mehr wo ich "order by title" einfügen muss

vielleicht hat ja jemand eine idee und kann mir weiterhelfen

Gruß Stefan
 
ja das stimmt, ich benutze mysql, habe auch schon alle varianten durchprobiert aber ich bekomme immer alle datensätze angezeigt und das unsortiert

if($qry) $result = sql_query("select tid, title, area, city, state from nuke_4naddress_book where (author='$userinfo[0]' OR access='alle') ORDER BY title and ".$qry, $dbi) ;
 
Die Abfrage muss so aussehen:

if($qry) $result = sql_query("select tid, title, area, city, state from nuke_4naddress_book where (author='$userinfo[0]' OR access='alle') and ".$qry, $dbi order by title) ;
 
Zurück