LeonelSanchezJr
Programmer
I need to create a HOLD file with DRIVER_NUMBERS.
Then, I need to query a second table based on the DRIVER_NUMBERS that exist in the previous HOLD file.
I think the logic is like this.
TABLE FILE CAR
PRINT
CAR
WHERE CAR EQ 'BMW';
ON TABLE HOLD AS DRIVER FORMAT FOCUS
TABLE FILE MY_CARS
PRINT
CAR2
WHERE CAR2 EQ (DRIVER);
END
But I am not sure of the logic syntax...
Thanks,
Leo ;-)
Then, I need to query a second table based on the DRIVER_NUMBERS that exist in the previous HOLD file.
I think the logic is like this.
TABLE FILE CAR
CAR
WHERE CAR EQ 'BMW';
ON TABLE HOLD AS DRIVER FORMAT FOCUS
TABLE FILE MY_CARS
CAR2
WHERE CAR2 EQ (DRIVER);
END
But I am not sure of the logic syntax...
Thanks,
Leo ;-)