I'm not very familiar w/ Pervasive SQL syntax. The SELECT query runs on MS SQL but syntax error in Pervasive SQL.
Here's my query in MS SQL
Quote:
SELECT CustomerTable.CustID, CustomerTable.CustName, ProductTable.ProdID
FROM CustomerTable LEFT OUTER JOIN ProductTable ON CustomerTable.ProdID=ProductTable.ProdID
|
I use LEFT OUTER JOIN because all data on CustomerTable should be displayed even if ProdID is null in value.
What's the equivalent syntax of LEFT OUTER JOIN in pervasive SQL? The query below runs on Pervasive SQL but I cannot do this query because it means INNER JOIN.
Quote:
SELECT CustomerTable.CustID, CustomerTable.CustName, ProductTable.ProdID
FROM CustomerTable
WHERE CustomerTable.ProdID=ProductTable.ProdID
|