SELECT
sname,
sno,
ssex
FROM
student
WHERE
sname NOT LIKE '刘%';
20. 查询表student——查询所有不姓刘学生的姓名、学号和性别
最新推荐文章于 2023-03-30 12:47:46 发布
SELECT
sname,
sno,
ssex
FROM
student
WHERE
sname NOT LIKE '刘%';