i want to add two tables. But how should i distinguish that which entries is from which table?
table1
col1
-----
a
b
c
table 2
1
2
3
The result should be:
col1 tablename
----------------
a table1
b "
c "
d table2
e "
f "