February 14, 2013 at 6:48 am
Hi All,
I have a table named tbl which contains 250 rows
I have a Varaible @CNT = SELECT count(*) from tbl
Then i have a query as Select top 10 * from tbl
Now i want to pass @CNT into second query.
The output of Select top 10 * from tbl will be
1val1
2val2
..
..
..
10val 10
But i want as
1val1250
2val2250
..
..
..
10val 10250
250 indicates the value of @CNT.
Or is there any other way in which i can pass @CNT as a seperate field in SQL Server Reporitng Services RDL
Thanks in advance
February 14, 2013 at 6:51 am
needs to be done in the same session but do
declare @cnt int
select @cnt = count(*) from table
select top 10 *, @cnt from table
February 14, 2013 at 7:11 am
Thanks a lot Anthony. This helped me to fix the issue with which i was struggling
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy