ให้ chap_filename มัน allow null แล้วเช็คด้วย
select chap_id from chapter where chap_filename is not null and chap_id = '1'; // อันนี้คือเช็คว่ามันมีอยู่ไหม ถ้ามีจะได้ผลลัพธ์ของ record นั้นออกมา
Code
2. ในการลบข้อมูล จะลบเฉพาะตัวบทเรียน (chap_filename) ได้ไหมคะ คือไม่ลบทั้ง record
ลบแค่ field chap_filename ของ record ที่มี chap_id ตรงกับที่ต้องการอ่ะค่ะ ทำยังไงคะ
update chapter set chap_filename = null where chap_id = '1';