ถ้าค่าในฟิลด์เป็น number ไม่ต้องใช้ ' แต่ถ้าเป็นพวก varchar, date, time ให้ใช้ '
ตัวอย่าง
Code (PHP)
$sql = 'select * from table where id = '.$id; // หรือ
$sql = "select * from table where id = $id"; // จะได้ผลลัพธ์เหมือนกัน คือฟิลด์เงื่อนไขใน where เป็นตัวเลข ไม่ต้องใช้ ' ครอบ
// ตัวอย่างต่อไปนี้ค่าในฟิลด์เป็นประเภทที่ต้องใช้ ' ครอบ
$sql = 'select * from table where name = \''.$name.'\''; // หรือ
$sql = "select * from table where name = '$name'"; // จะได้เหมือนกัน