[Oracle] Select 문 (2) - WHERE 절
·
Basic/Database
WHERE 절 비교 연산자 =, !=, >, =, = 15000; -- 07/01/01 일 이후에 입사한 사원들의 이름과 입사일 출력 select first_name || '-' ||last_name 이름 , hire_date 입사일 from employees where hire_date > to_date('07/01/01', 'yy/mm/dd'); 또는 where hire_date >= '07/01/01'; -- 이름이 Lex인 직원의 연봉 출력 select first_name || '-' ||last_name 이름 , salary 입사일 from employees where first_name = 'Lex' or last_name = 'Lex'; 오라클 날짜데이터 비교하는 법 알아보기 https://..