AVASOFT interview question

how to merge two tables in SQL?

Interview Answers

Anonymous

Jul 4, 2018

Concat(first col, second col)

6

Anonymous

Dec 4, 2019

Select * from table1, table2 where table1. Common column=table2.common column For example deptno is common column

Anonymous

Dec 4, 2019

Select * from table1, table2 where table1. Common column=table2.common column For example deptno is common column