i want to display the employee names which having names start with a and b ,it should be like list will display employees with \'a\' as a first letter and then the \'b\' as a
select name_last, name_first from employees where name_last like 'A%' or name_last like 'B%' order by name_last, name_first asc