I have a SQL Server table with 2 columns, Code and CodeDesc. I want to use T-SQL to loop through the rows and print each character of CodeDesc. How to do it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If you really want to loop through the rows, you need cursor.
|
|||||||||
|
|
SELECT CodeDesc FROM Table1 Then print all the returned Data. (Of course you don't use T-SQL to do the printing) |
|||||||||||
|
|
Since this sounds like homework I'm going to tell you how to go about doing it instead of giving you code that does it: In a WHILE loop, use SUBSTRING to get and print the character. To find the length of the string, use the LEN function. |
|||
|
|
