Using your own syntax:
Code:
SELECT jos_content.id AS conid,
jos_jreviews_content.contentid AS jrconid,
FROM jos_content, jos_jreviews_content
WHERE conid = jrconid
ORDER BY jos_content.id ASC
The where clause must use the field name and not the renamed field name
Code:
SELECT jos_content.id AS conid,
jos_jreviews_content.contentid AS jrconid,
FROM jos_content, jos_jreviews_content
WHERE jos_content.id = jos_jreviews_content.contentid
ORDER BY jos_content.id ASC