Question
Table A ColX 1 1 Table B ColY 1 1 1 1 1 What will be the count of rows when: (for Table A and Table B) left join right join inner join cross join full outer join
in progress 0
3 years 0 Answers 767 views Newbie

Question
What will be the output of following sql query SELECT     name,         last_name,         salary FROM Salary WHERE salary >    (SELECT AVG (salary)                     FROM Salary);
in progress 0
3 years 1 Answer 846 views Newbie