SELECT * FROM staff WHERE date LIKE '2010-08-04' AND project_code IS NULL
ปล. project_code IS NULL คือ เมื่อ ฟิลด์project_code ไม่มีค่า
ประวัติการแก้ไข 2010-08-17 15:41:07
Date :
2010-08-17 15:35:40
By :
50121680
No. 2
Guest
Select * from [table] where date not like '2010-08-04';
หรือ
Select * from [table] where date not in ('2010-08-04');
หรือ
Select * from [table] where date <> '2010-08-04';