I have two tables like indicated below:
Table1:
name surname age
---- ------- ---
a b null
c d null
Table 2:
age
---
1
4
I want to combine them into first table (Table1) like
name surname age
---- ------- ---
a b 1
c d 4
(they have the same number of rows) How can I combine them?
maybe you want this,