首页 > 代码库 > SQL_自动统计表中数据的条数
SQL_自动统计表中数据的条数
CREATE TRIGGER GetCounton teachersafter insertasbegin declare @totalCount int--表变量里面总共的变量条数 declare @RowNo int--当前是多少行 declare @tempId int--保存当前行的id declare @classCount int--保存当前班级的数量 declare @temp1 table(indexid int identity(1,1) not null,id int) insert into @temp1 select ID from Students set @totalCount=@@ROWCOUNT set @RowNo=1 while @RowNo <= @totalCount begin select @tempId=id from @temp1 where indexid = @RowNo select @classCount=COUNT(*) from Students where ClassName=@tempId update teachers set classCount=@classCount where ID=@tempId set @RowNo = @RowNo+1 end end
SQL_自动统计表中数据的条数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。