i have this line of code in SQL server 2008 R2
select * from [Db].[dbo].[cart] where date < DATEADD(MINUTE, -30, GETDATE())
i want count all data that satisfy the condition and passed to a variable like
Declare @loop
i will use the variable to know the loop count..
The question is: How can i passed the Value of Select statement to the @loop variable.
Thx