I have some JSL I'm running that appears to be re-creating the tables I am joining. So I start with TableA and TableB, and want to make TableC. What ends up happening is I make TableA2, TableB2, and TableC, while still having TableA and TableB . It's the exact same JSL I'm used to using for this so I can't figure out what's up here. Any help would be appreciated.
TableC = TableA << Join (
With( TableB ),
Match Flag(0),
Select( :ID, :PROP, :DATE_, :VALUE_, :CASE, :CMSQID),
SelectWith( :Name
,:origin
,:region
,:Season ),
By Matching Columns( :CMSQID = :CMSQID ),
Drop multiples( 0, 0 ),
Include Nonmatches( 1, 0 ),
Preserve main table order( 1 )
);