1.
SELECT * FROM data.dataanalyst
where
(city = '上海'
and education = '本科')
or
(city = '北京'
and education = '硕士')
2.
SELECT * FROM data.dataanalyst
where
secondType like '后端%'
1.
SELECT * FROM data.dataanalyst
where
(city = '上海'
and education = '本科')
or
(city = '北京'
and education = '硕士')
2.
SELECT * FROM data.dataanalyst
where
secondType like '后端%'