SELECT A.id_topic, A.topic, A.topic_status, B.user
FROM Table_1 AS A
LEFT JOIN Table_2 AS B
ON a.id_topic = b.id_topic where A.topic_status = '1' and B.user = 'cotton';
SELECT A.id_topic, A.topic, A.topic_status, B.user
FROM assess_topic AS A
LEFT JOIN assess_relation AS B
ON A.id_topic = B.id_topic
WHERE A.topic_status = '1'
AND B.user = 'cotton';
ได้ข้อมูลแบบนี้ค่ะ แต่ยังไม่ใช่ข้อมูลที่ต้องการ
ต้องการข้อมูล id_topic ทั้งหมดที่มี topic_status ='1' โดยไม่สนว่า user จะเป็น NULL หรือเปล่า (คือเอาทั้ง user = 'cotton' และ user ที่เป็นค่า NULL ด้วยค่ะ)