试题 6: Choose two.Examine this statement, which executes successfully:
CREATE TABLE employees ( emp_no int unsigned NOT NULL, birth_date date NOT NULL, first_name varchar(14) NOT NULL, last_name varchar(16) NOT NULL, hire_date date NOT NULL, PRIMARY KEY (emp_no))ENGINE=InnoDB;
Now examine this query: SELECT emp_no, first_name, last_name, birth_date FROM employeesWHERE MONTH (birth_date) = 4;
You must add an index that can reduce the number of rows processed by the query.
Which two statements can do this?