I have this query which works fine on most servers. But the host has mysql version: 3.23.58, which I dont think supports nested queries.
So how can I fix this query to not use a nested query?
Thx
jd
So how can I fix this query to not use a nested query?
Code:
$query = mysql_query("SELECT * FROM ".TABLE_PREFIX."roster
WHERE rosterid IN (SELECT rosterid FROM ".TABLE_PREFIX."team)
ORDER BY name ASC");
Thx
jd
Last edited: