I have the following VFP cursors (tables):
and i need this result:
I've tried FULL JOIN, CROSS JOIN, UNION ALL, etc. But i can't solve the problem.
Please give me any help.
I'm using Visual FoxPro 9.0
Here's the code:
lkey = SYS(2015)
CREATE CURSOR cur1 (unico c(10),valor c(2))
INSERT INTO cur1 values(lkey, 'A1')
INSERT INTO cur1 values(lkey, 'A2')
INSERT INTO cur1 values(lkey, 'A3')
CREATE CURSOR cur2 (unico c(10),valor c(2))
INSERT INTO cur2 values(lkey, 'B1')
INSERT INTO cur2 values(lkey, 'B2')
INSERT INTO cur2 values(lkey, 'B3')
INSERT INTO cur3 values(lkey, 'C1')
INSERT INTO cur3 values(lkey, 'C2')
INSERT INTO cur3 values(lkey, 'C3')
Thanks!




unicois a key to join on? Or does only the position in the cursors matter to determine which rows should be joined? - sticky bit