5
Answers

how to use cursor

kiran kumar

kiran kumar

15y
4.6k
1
hi friends i need to know about cursors in sqlserver....i have a table called "kkk" with a column "status"...two values "present" and "absent" represents the column "status"...i want to count how many values represent "present" and "status"..i want this task to be done using cursors...i am very new to sqlserver....any other method is also appreciated....help me friends....
Answers (5)
0
Mauricio Rosa

Mauricio Rosa

NA 13 0 15y

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
Kirtan Patel

Kirtan Patel

NA 35k 2.8m 15y
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
Bryian Tan

Bryian Tan

NA 9.4k 887.3k 15y
Kiran,

Can you post the tSql you have now and I can look into it.

Thanks,
Bryian Tan
0
kiran kumar

kiran kumar

NA 1.6k 242.1k 15y
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
0
Bryian Tan

Bryian Tan

NA 9.4k 887.3k 15y