HOME > PHP > PHP Forum > ช่วยอธิบาย บันทัดนี้ให้หน่อยน่ะค่ะ $func_h="select c.emp_id,d.fname,d.lname from db_iqa.tab_emp c , tab_center.tab_emp d" ." where c.emp_id=d.emp_id and (c.emp_id not in ($manager_auditor)) and c.level not in (4) order by c.emp_id";
ช่วยอธิบาย บันทัดนี้ให้หน่อยน่ะค่ะ $func_h="select c.emp_id,d.fname,d.lname from db_iqa.tab_emp c , tab_center.tab_emp d" ." where c.emp_id=d.emp_id and (c.emp_id not in ($manager_auditor)) and c.level not in (4) order by c.emp_id";
$func_h="select c.emp_id,d.fname,d.lname from db_iqa.tab_emp c , tab_center.tab_emp d"
." where c.emp_id=d.emp_id and (c.emp_id not in ($manager_auditor)) and c.level not in (4) order by c.emp_id";
c.level not in (4)
(...) เราสามารถใส่ค่าหลายๆค่าได้ครับ เช่น (4,5,6,7,8)
c.level not in หมายถึง c.level ที่ไม่มี หรือไม่ตรงกับทุกตัวที่อยู่ใน (?,?,?)
c.level not in (4) จึงหมายถึง c.level ที่ไม่เท่ากับ หรือไม่ตรงกับ 4 ครับ