Prefix each fieldname in your SELECT with the table name.<br>
<br>
For example : If your table names are CUSTOMER and EMPLOYEE.<br>
<br>
SELECT CUSTOMER.name, EMPLOYEE.name<br>
FROM CUSTOMER, EMPLOYEE<br>
WHERE CUSTOMER.id = EMPLOYEE.id;<br>
<br>
will give you the name of each employee who is...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.