新手sql问题

usemastergocreatetablescore(stuNointidentity(1,1)notnull,stuNamevarchar(10)notnull,La... use master
go

create table score
(stuNo int identity(1,1)not null,
stuName varchar(10) not null,
LabExam int
)
go

insert score(stuName,LabExam)
select '张三',90 union
select '李斯',75 union
select '王五',40 union
select '源流',60 union
select '田七',50

select * from score

declare @n int
set nocount on ------------这句话什么意思?
while(1=1)
begin
select @n = COUNT(LabExam) from score where LabExam < 60
if(@n >0)
begin
update score set LabExam = LabExam + 2
update score set LabExam = 100 where LabExam > 100
end
else
break
end

select 姓名=stuName,成绩=case
when LabExam < 60 then 'E'
when LabExam between 60 and 69 then 'D'
when LabExam between 70 and 79 then 'C'
when LabExam between 80 and 89 then 'B'
else 'A'
end
from score

set nocount on ------------这句话什么意思?
展开
 我来答
百度网友0975ea3
2008-05-20 · TA获得超过1.2万个赞
知道小有建树答主
回答量:70
采纳率:0%
帮助的人:45.1万
展开全部
当 SET NOCOUNT 为 ON 时,不返回计数(表示受 Transact-SQL 语句影响的行数)。当 SET NOCOUNT 为 OFF 时,返回计数。

如果存储过程中包含的一些语句并不返回许多实际的数据,则该设置由于大量减少了网络流量,因此可显著提高性能。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式