L
Leo Karl
I'm learning SQL from a 1990 Gruber book (Understanding SQL) in which this
self-join used to work:
SELECT first.cname, second.cname, first.rating
FROM Customers first, Customers second
WHERE first.rating = second.rating;
When run under Access 2002 in gives a "Syntax error in From clause" which I
can't seem to correct, no matter what I try. Any idea how to make it work
in under the more current SQL implementations?
Thanks, Leo
self-join used to work:
SELECT first.cname, second.cname, first.rating
FROM Customers first, Customers second
WHERE first.rating = second.rating;
When run under Access 2002 in gives a "Syntax error in From clause" which I
can't seem to correct, no matter what I try. Any idea how to make it work
in under the more current SQL implementations?
Thanks, Leo