1,加一个all修饰符就可过滤 text、ntext 或 image 类型
insert into Stu(Stu_id,Stu_name,Stu_password,Stu_address,Stu_sex)
select 1,'Jerry','123','No.12','Male' union all
select 2,'robinn','234','No.12','Female'
2,
select
(case when 语文>=80 then '优秀'
when 语文>=60 then '及格'
else '不及格') as 语文,
(case when 数学>=80 then '优秀'
when 数学>=60 then '及格'
else '不及格') as 数学,
(case when 英语>=80 then '优秀'
when 英语>=60 then '及格'
else '不及格') as 英语,
from table
输出:
语文 数学 英语
及格 优秀 不及格 |