use EMIS
go
select *
from t_course_reg
where student_id = '2017020101'
go
delete
from t_course_reg --要删除的表
where student_id = '2017020101' --要删除的数据条件
go
select *
from t_course_reg
where student_id = '2017020101'
go
SQL server 语句删除部分数据
最新推荐文章于 2024-01-26 09:55:00 发布
本文提供了一个SQL操作的具体实例,包括如何使用SQL语句查询和删除指定学生的课程注册信息。通过这些示例,读者可以了解基本的SQL语法和用法。
4751

被折叠的 条评论
为什么被折叠?



