Wie kann ich mehrere Werte aus einer DB zu einem bestimmten DS
per Auswahlliste übergeben ?
per Auswahlliste übergeben ?
SELECT p.*, s.* FROM project_spec p, speciality s WHERE p.country='$country' and p.icd_id='$icd_id' and p.speciality_id=s.speciality_id and p.brand_id IN (0,".implode(',', $brand_ids).") Group by s.speciality_name
Comment