Hi Folks,
I had the following sql command which worked fine in MS Access and I tried to modify it to get it to work in Pervasive but I get a syntax error message. How can I modify this query to get it to work:
Mighty
I had the following sql command which worked fine in MS Access and I tried to modify it to get it to work in Pervasive but I get a syntax error message. How can I modify this query to get it to work:
Code:
SELECT SUM(Query1.DUEQTY) AS TOTALWIP FROM "Part Master" INNER JOIN (SELECT PRTNUM_10, SUM(DUEQTY_10) AS DUEQTY FROM "Order Master" WHERE TYPE_10 = 'MF' AND STATUS_10 = '3' GROUP BY PRTNUM_10) AS Query1 ON "Part Master".PRTNUM_01 = Query1.PRTNUM_10 WHERE "Part Master".COMCDE_01 = 'AB1'
Mighty