1
Answer

arrays in c# ?

SUNIL GUTTA

SUNIL GUTTA

11y
1.1k
1
Hi fellas 

I tried and done with below requirement but i am not sure ..

Requirement is : 

Write an app that calculates the product of a series of integers that are passed to method product using a variable-length argument list. Test your method with several calls, each with a different number of arguments.


Thank you for help ... 
Answers (1)
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