Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Create view by Combining 3 fields into 1 field
Message
From
14/05/1999 13:47:55
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00218760
Message ID:
00219121
Views:
30
I think you'll need to use the UNION clause which can't be done with the view designer. Try SELECT field1 AS X, field2 AS Y FROM table1 UNION SELECT field1 AS X, field2 AS Y FROM TABLE2 UNION SELECT FIELD1 AS X, FIELD2 AS Y FROM TABLE3 INTO CURSOR temp.

You might be able to use CREATE SQL VIEW to create a view from the SQL statement. I don't know if a view can handle the UNION clause or not.

Dick
Previous
Reply
Map
View

Click here to load this message in the networking platform