Why does this sql code give error 1066 (Not unique table/alias: ‘customer)?
Posted
by aadersh patel
on Stack Overflow
See other posts from Stack Overflow
or by aadersh patel
Published on 2010-03-25T22:17:44Z
Indexed on
2010/03/25
22:23 UTC
Read the original article
Hit count: 120
mysql
|inner-join
SELECT customer.id, customer.firstName, account.id
FROM customer, account
INNER JOIN customer
ON customer.id = account.customerId
ORDER BY customer.id
appologies for the poor editing...
© Stack Overflow or respective owner