I am fairly new to MySQL and would like to ask how can you fine tune this query or rewrite it in a better way.
 SELECT *
 FROM emp
 WHERE birth_date BETWEEN '1999-05-01'
 AND '1999-05-31'
 OR last_name in ('Bart', 'Martha', 'Lisa');
Your assistance is greatly appreciated. Can you also explain why you did it so I would know
Thanks.