过滤条件
使用where子句,将不满足条件的行过滤掉
select 字段1,字段2,from 表名 where 过滤条件;
select * from employees where ladt _name =' king ' ;
where声明必须写在,from结构的后面。