I have a scenario where i need to validate each individual row values from a column so as to validate further in stored procedure. V do this in c# using arrays. ex:

string[] name=new string[2]{"Sachin","Rahul"};
f_name=name[0];l_name=name[1];

Like the above example i would like to do in sql server 2008. I have a sample snippet below.

create procedure SP_pop_time(@date1 datetime,@date2 datetime)
as
begin
select distinct dev_token from tbl_fb_pushnote

/* so after getting the distinct values i need to validate with each and every record from the resultant select statement*/like

select count(dev_token1) from tbl 
where cr_date between @date1 and @date2
and time between 'time1' and 'time2'

here dev_token1 is the first record from the select statement. Also i need to use looping for validating each and every record.

When I surf for help, @@rownumber and @@rowversion may fit into my scenario. but I don't know how to use it.

Any help ll be appreciated. thx.

link|improve this question

40% accept rate
2  
You're not making it very clear what you're trying to do.... can you reword your question? Give an example of a "good" row and a "bad" row?? – marc_s Oct 21 '11 at 5:46
Is dev_token valid when cr_date is between date1 and date2? An invalid row when cr_date is outside of these dates? – mouters Oct 21 '11 at 5:51
I mean. i ll get a list of records from the select statement like dev_token 21503855a6217687936b9792 34988f8045b624346135721 1e39205be8d6629e468249f9 then i ll take first take value 2150.. for the validation then 34988 and then 1e392. how to do this? can u get me nw? – Csharp_crack Oct 21 '11 at 5:58
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.