vote up 0 vote down star

What is the fastest way to loop thru a Query in T-SQL . 1) Cursors or 2) Temp tables with Key added or any thing else.

flag

71% accept rate
1  
What are you trying to accomplish? – Mitchel Sellers Jul 1 at 19:58
I am getting some data from a query and want to loop thru the 1st to last item and do a string concatenation of a field in the result set. – Greens Jul 1 at 20:03
Basic rule of thumb: avoid cursors whenever possible - they're dead-slow, clumsy, and just not suited for T-SQL. Use a set-based approach instead - load it into a temp table and run a UPDATE statement on it. – marc_s Jul 1 at 20:40
ECLARE @numbers VARCHAR(255) SELECT @numbers = COALESCE(@numbers + ' | ','') + PHONE_NUMB FROM my_table (NOLOCK) WHERE CONTACT_ID=@contact_id RETURN @numbers How do I add a Case statement Example say If my phone number format is International , add international Pin etc. Just as an example – Greens Jul 1 at 21:12

9 Answers

vote up 0 vote down check

I don't think you need a cursor for that (your comment about concat) if I understand what you're going for. Here's one of mine that grabs all the phone numbers for a contact and plops them in a field and returns it.

DECLARE @numbers VARCHAR(255)

SELECT @numbers = COALESCE(@numbers + ' | ','') + PHONE_NUMB FROM my_table (NOLOCK)
WHERE CONTACT_ID=@contact_id   RETURN @numbers
link|flag
How do I add a Case statement Example say If my phone number format is International , add international Pin etc. Just as an example. – Greens Jul 1 at 20:51
It's just normal SQL. You can use typical query syntax. DECLARE @RET VARCHAR (4192) SELECT @RET = COALESCE(@RET + ' | ', '') + LTRIM(COALESCE( CONTACT_FIRST_NAME + ' ' + CONTACT_LAST_NAME, CONTACT_REF, CONTACT_COMP_NAME) + ISNULL(' ' + CONTACT_SSN,'') ) FROM my_table WHERE my_conditions RETURN @RET – Nikki9696 Jul 1 at 21:20
How do I use a CASE Statement in here .IS it possible? – Greens Jul 1 at 21:22
here's another example. DECLARE @RET VARCHAR (MAX) SELECT @RET = COALESCE(@RET + ' | ', '') + CASE WHEN PHONE_TYPE_ID=1 THEN 'HOME' ELSE 'OTHER' END + ' ' + PHONE_NUMB FROM my_table WHERE CONTACT_ID=@CONTACT_ID RETURN @RET – Nikki9696 Jul 1 at 21:25
If I use a case statement here ,all I end up is with last row in the query?.... – Greens Jul 1 at 21:26
show 1 more comment
vote up 5 vote down

The fastest way to "loop" thru a query is to just not do it. In SQL, you should be thinking set-based instead of loop-based. You should probably evaluate your query, ask why you need to loop, and look for ways to do it as a set.

With that said, using the FAST_FORWARD option on your cursors will help speed things along.

link|flag
vote up 3 vote down

For your stated goal, something like this is actually a better bet - avoids the "looping" issue entirely.

declare @table table
(
    ID int
)

insert into @table select 1 union select 2 union select 3 union select 4 union select 5

declare @concat varchar(256)

-- Add comma if it is not the first item in the list
select @concat = isnull(@concat + ', ', '') + ltrim(rtrim(str(ID))) from @table order by ID desc

-- or do whatever you want with the concatenated value now...
print @concat
link|flag
+1 for working code – Raj More Jul 1 at 23:24
vote up 1 vote down

Depends on what you're trying to do. Some tasks are better suited for cursors, some for temp tables. That's why they both exist.

link|flag
lol. any factors to consider which one to implement. – Greens Jul 1 at 20:00
table size is a major factor – northpole Jul 1 at 20:03
vote up 0 vote down

Cursors are usually resource hogs especially as your table size grows. So if your table size is small I would be okay with recommending a cursor, however, a larger table would probably do better with an external or temporary table.

link|flag
vote up 0 vote down

Do you want to loop through query output inside stored procedure OR from C# code?

Generally speaking, you should avoid looping through query output one row at a time. SQL is meant for set based operations so see if you can solve your problem using set based approach.

link|flag
vote up 0 vote down

Depending on the size of your result set - Table variables are in memory and require no disk read, can be treated just like a table (set operations) and are very fast until result set gets to large for memory (which then requires swap file writes).

link|flag
table variables can live in tempdb as well - blogs.msdn.com/sqlserverstorageengine/archive/… – Scott Ivey Jul 1 at 20:07
vote up 0 vote down

Here's a shortcut to get a comma-delimited string of a single field from a query that returns a number of rows. Pretty quick compared to the alternatives of cursors, etc., and it can be part of a subquery (i.e., get some things, and in one column, the ids of all the things related to each thing in some other table):

SELECT
    COALESCE(
      REPLACE(
        REPLACE(
          REPLACE(
        (SELECT MyField AS 'c' FROM [mytable] FOR XML PATH('')),'</c><c>',','), 
          '<c>',''),
        '</c>',''),
      '')
   AS MyFieldCSV

Caveat: it won't play nice if your column contains characters that FOR XML PATH will escape.

link|flag
vote up 0 vote down

Cursor is not good avoid cursor and use while loop in place of cursor Temp table with key added is the best way to use looping.

i have to manipulate more than 1000000 rows in the table and for cursor take 2 min because of complex logic. but when convert cursor in to while loop it will take 25 seconds only. so that's big diffrence in performace.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.