在Linux系统中MySQL命令查询

查询所有运维工程师的姓名怎么查询?
查询employee表中基本工资为8000-10000员工的所有信息

select name from 人员表 where 职位=运维工程师
select * from employee where 基础工资 between 8000 and 10000