I have the following SQL query to extract data from a Jade database using ODCB.
SELECT
Table1.Field1,
Table1.Field2,
Table1.Field3,
Table1.Field4,
Table2.Field5
FROM Table1, Table2
Where Table1.Field6 = Table2.Field7;
It returns zero rows even though there is data in both tables and Field6 and ...