码迷,mamicode.com
首页 > 数据库 > 详细

SQL_自动统计表中数据的条数

时间:2014-10-06 01:04:59      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   数据   sp   div   c   on   

CREATE TRIGGER GetCount
on teachers
after insert
as
begin
    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_自动统计表中数据的条数

标签:style   blog   color   ar   数据   sp   div   c   on   

原文地址:http://www.cnblogs.com/zwhFighting/p/4007814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!