0
Hi Kiran,
I think that you´re only tring to understand how to cursos work in SQL Server, rigth?
How you´re new in SQL Server, it´s important keep in mind that cursors must be used only if have not another way to do what you need to do.
Look using good eyes to temporary tables once SQL Server is optmized to work with them. Used on SQL Server, cursors deprecate the server perfomance in higher levels
Regards
0
Here i coded Cursor based Logic for you !!
declare @total_absent numeric(5)
declare @total_present numeric(5)
declare @status varchar(50)
declare c1 cursor for select * from kkk
set @total_absent =0
set @total_present = 0
Open c1
fetch next from c1 into @status
while @@FETCH_STATUS = 0
begin
if ( @status = 'present')
set @total_absent = @total_absent+1;
else
set @total_present = @total_present+1;
fetch next from c1 into @status
end
print @total_absent
print @total_present
close c1
DEALLOCATE c1
0
Kiran,
Can you post the tSql you have now and I can look into it.
Thanks,
Bryian Tan
0
hi bryian,i want to know about this thing....after fetching a row value how to compare it to a constant string...all the way when i try to execute the cursor it showing error....never mind if it is a silly question..i am very new to sqlserver