How to select columns from different tables and move all those columns in one table for example we

select sal from dept where sal>1000
(in this we get one column regarding sal greater than 1000)
select deptno from dept;

overall we get two columns .my qns is how to put these two different columns in one table