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?
Table 1with the age inTable 2? Or are you trying to do by row number?