ontsjc
Technical User
- May 17, 2000
- 113
Hello all,
This is probably pretty simple but I can't seem to find the answer. When I run the following select statement, fields from the parties.dbf that don't have a corresponding record in Case.dbf fill in with .NULL. Is there anyway to just have them empty? Neither dbf structure supports null values.
This is probably pretty simple but I can't seem to find the answer. When I run the following select statement, fields from the parties.dbf that don't have a corresponding record in Case.dbf fill in with .NULL. Is there anyway to just have them empty? Neither dbf structure supports null values.
Code:
SELECT DISTINCT * FROM case left JOIN parties ON case.ivjc = parties.ivjc;
WHERE BETWEEN(case.in_date,(dStartDate),(dEDate)) AND ALLTRIM(case.county) = ALLTRIM(cCounty) AND 'Community' $ type;
INTO CURSOR main readwrite