I'm having trouble executing the following Query:
SELECT product_id,
presentation
FROM Variant
INNER JOIN productCategory ON product_id = product_id
LIMIT 10;
Error:
ERROR 1052 (23000): Column 'product_id' in field list is ambiguous
How can I resolve using aliases?