Hi,
SQL2k
For Testing purposes only, i'm trying to write some sql using the Legacy Syntax, not the SQL-92 syntax.
Use NORTHWIND
SELECT customers.contactname, orders.freight, employees.Firstname
from customers, orders, employees
where customers.CustomerID*=orders.CustomerID and Orders.employeeid*=employees.employeeid
When I run it Query Analyser, i get the following error...
Query contains an outer-join request that is not permitted.
How can I get the server to process the query?
SQL2k
For Testing purposes only, i'm trying to write some sql using the Legacy Syntax, not the SQL-92 syntax.
Use NORTHWIND
SELECT customers.contactname, orders.freight, employees.Firstname
from customers, orders, employees
where customers.CustomerID*=orders.CustomerID and Orders.employeeid*=employees.employeeid
When I run it Query Analyser, i get the following error...
Query contains an outer-join request that is not permitted.
How can I get the server to process the query?