$query_clippRec = "SELECT * FROM clipping_news INNER JOIN newspaper,topic ON (newspaper.newspaper_id=clipping_news.newspaper_id AND topic.topic_id=clipping_news.topic_id)";
มัน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 'ON (clipping_news.newspaper_id=newspaper.newspaper_id AND clipping_news.topic_id' at line 1
ทำไมคะ
ช่วยหน่อยนะคะ
Tag : - - - -
Date :
2 ก.พ. 2551 15:37:49
By :
apass
View :
1886
Reply :
1
No. 1
Guest
SELECT * FROM clipping_news clip
INNER JOIN newspaper topic ON (topic.newspaper_id=clip.newspaper_id
AND topic.topic_id=clip.topic_id)";