Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのクエリを持っています:
$SQL = "SELECT id, ciudadh, corporacionh,r1,ultima,anotaciones FROM juan ".$where." AND ORDER BY $sidx $sord LIMIT $start ,$limit";
したがって、id=500 の行があり、その行をそのクエリから非表示にしたいと考えています。
どうやってそれをするのですか?
別の where 句を追加するだけです。
$SQL = "SELECT id ,ciudadh ,corporacionh ,r1 ,ultima ,anotaciones FROM juan ".$where ." AND id!=500 ORDER BY $sidx $sord LIMIT $start ,$limit";