질문 : list of employees hired in year 2000 and having First Name starting with “A” or “b”
현재 employees 테이블에 firstname 이랑 hire_date 이 들어가있는 상태입니다
select * from employees
where first_name like 'b%'
and year(hire_date) = '2000';
이렇게 했을 경우에는 2000년도에 고용된 사람들 중에 이름이 b로시작하는 사람이 뜨는데
문제는 b만이 아니라 a or b 이기떄문에 a도 집어넣어야하는데 어디다가 집어넣어야하는지 모르겠어서 질문드립니다