Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
INSERT INTO curFinalResult (ParentTab,Parentfld,ChildTab,ChildFld,OrphChdKey,added) ;
SELECT distinct lcTable,lcParentfld,lcChild,lcChildfld,&lcChildfld,0 FROM &lcChild ;
WHERE &lcWHERE ;
NOT in (SELECT &lcParentfld FROM &lcTable)
SELECT distinct lcTable,lcParentfld,lcChild,lcChildfld,&lcChildfld,0 FROM &lcChild ;
WHERE &lcWHERE NOT in (SELECT &lcParentfld FROM &lcTable) into cursor curTemp
select curFinalResult
append from dbf("curTemp")