select vend_name
from Vendors
where vend_country = 'USA' and vend_state = 'CA'

知识点:
1、多列筛选 使用 and链接
2、筛选为字符串 使用单双引号都可以,没有区别
3、注意这里的字符串要大写