SQL: joining multiples tables into one.
- by Graveen
I have 4 tables.
r1, r2, r3 and r4. The table columns are the following:
rId | rName
I want to have, in fine, an unique table - let's call it R. Obviously, R will have the following structure:
rTableName | rId | rName
I'm looking for a solution, and the more natural for me is to:
add a single column to all rX
insert this column the table…