I have two tables, with slightly differing data structures. Each table has a few fields that the other does not (but many common fields). I want to merge them i.e. create a single table with one record for each row of the source tables (ex if source 1 has 300 rows and source 2 has 400 rows, the result has 700 rows).
My solution in other platforms is to use SQL to:
1. create a view for each table that adds the missing fields from the other table (usually with null values)
2. create a third view that merges the two tables with a "Union All" statement.
There appears to be no such statement in Caspio. But perhaps (hopefully) I am incorrect. Please advise.
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Question
kfortowsky
I have two tables, with slightly differing data structures. Each table has a few fields that the other does not (but many common fields). I want to merge them i.e. create a single table with one record for each row of the source tables (ex if source 1 has 300 rows and source 2 has 400 rows, the result has 700 rows).
My solution in other platforms is to use SQL to:
1. create a view for each table that adds the missing fields from the other table (usually with null values)
2. create a third view that merges the two tables with a "Union All" statement.
There appears to be no such statement in Caspio. But perhaps (hopefully) I am incorrect. Please advise.
/Keith Fortowsky
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.