select
    `device_id`,
    `age`,
    `university`
from
    `user_profile`
where
    university like '%北京%';

本题使用到了 模糊查询LIKE,LIKE与后面通配符字符串匹配。 %表示任何字符,'%北京%'则表示无论北京前后是什么字符都可以匹配。