大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
在C1输入公式=text(round(A1/b1,4),"0.00%"),回车即可得出C1的结果。C2、C3步骤与之相同。
柳河ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为成都创新互联的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:028-86922220(备注:SSL证书合作)期待与您的合作!
这里text函数用来将括号内的值转换为%形式;round函数用来四舍五入商的值。
select * from 成绩表 where (语文成绩+外语成绩+数学成绩)=500 and (语文成绩+外语成绩+数学成绩)=550
----table 为你的表名,通过循环语句实现更新,@coun为更新次数
declare @cou int,@count int
set @cou=0
set @count=0
select top 0 * into #t1 from table
select @cou =COUNT (*) from table where [分数]90
while @cou0
begin
set @count=@count+@cou
insert into #t1
select * from table where [分数]90
update a
set a.[分数]= case when [分数] 60 then [分数]+5
when [分数] 70 then [分数]+4
when [分数] 80 then [分数]+3
when [分数] 90 then [分数]+2
else [分数]
end
from table a
inner join #t1 b on a.[姓名]=b.[姓名] and a.[课程]=b.[课程]
delete from #t1
select @cou =COUNT (*) from table where [分数]90
end
print @count
select 总分 = 各科成绩之和
from table
group by 姓名
试试吧 不行的话 说一声哈
select (select count(1) from dbo.T_E_Employee where age 60),(select count(1) from dbo.T_E_Employee where age 60)
select '优秀率:'+
cast(cast((select count(1) from 分数表名 where 分数列=90) as decimal(18,2))/cast((select count(1) from 分数表名) as decimal(18,2))*100 as varchar(20))+'%' as 优秀率
把对应表名 和 分数的列名 改成你的。
测试可用
如图