I am attempting to join 2 tables to get the matching values but am getting the ambiguous clause,
my code is here
SELECT *
FROM auction_media
JOIN auctions
ON auction_id = auction_id
WHERE media_type = '3'
an example of my table structure can be found here
the error is Column ‘auction_id’ in on clause is ambiguous
http://sqlfiddle.com/#!2/13583
what should i do to solve this problem?
try this