-- 문제1) EMPLOYEES Table의 모든 자료를 출력하여라.select *from employees;-- 문제2) EMPLOYEES Table의 컬럼들을 모두 출력하라.desc departments;desc employees;-- 문제3) EMPLOYEES Table에서 사원 번호, 이름, 급여, 담당업무를 출력하여라.select employee_id, first_name, salary, job_idfrom employees;-- 문제4) 모든 종업원의 급여를 $300증가 시키기 위해서 덧셈 연산자를 사용하고 결과에 SALARY+300을 디스플레이 합니다.select first_name, salary, salary+300from employees;-- 문제5) EMPLOYEES 테이블에서 사원번..