$sql_confirm="SELECT ty_application.ty_listdetail_position FROM ty_application INNER JOIN ty_listdetail ON ty_application.ty_listdetail_position Operater ty_listdetail.ty_listdetail_position where id='$_GET[confirm]'";
$query=mysql_query($sql_comfirm) or die (mysql_error());
while($rec=mysql_fetch_assoc($query)){
<p>Apply Position : <strong><?=$rec['position'];?></strong></p>
}
ถ้าเราเขียนนะ เราจะกำหนดด้วยว่าตัวที่ where id น่ะ จะเอา id จาก ตารางไหนไงค่ะ ไม่อย่างนั้นมันก็จะสับสนถ้า Table ของคุณมีคอลัมด์ id ทั้ง 2 Table มันก้อดึงไม่ถูกไง
SELECT ty_application.ty_listdetail_position
FROM ty_application INNER JOIN ty_listdetail ON ty_application.ty_listdetail_position = ty_listdetail.ty_listdetail_position
WHERE ty_application.id='$a'
$sql_confirm = "SELECT ty_listdetail. * , ty_application. * FROM ty_listdetail , ty_application '.' WHERE ty_listdetail.id_job = ty_application.id_job where id='$_GET[confirm]'";
ปรากฏว่ามัน error แบบนี้
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''.' WHERE ty_listdetail.id_job = ty_application.id_job where id='36'' at line 1