I'm trying to join two tables (fd_eggs and fd_collection) so that I can use info from both, but I keep getting the error
Quote:
|
Not unique table/alias: 'fd_collection'
|
I've hunted around, but can't find anything that gives me a hint as to where the error is.
Here's the query:
PHP Code:
$query = "SELECT fd_eggs.ID AS feid, fd_eggs.name AS fename, fd_collection.member_ID as memb
FROM fd_eggs, fd_collection
LEFT JOIN fd_collection
ON fd_eggs.ID = fd_collection.egg_ID
ORDER BY releasedate DESC";
Any advice greatly appreciated.
(gawd, i hate being this much of a n000b)