I am trying to place a several SELECT CASE statements into a variable and I am not having much luck.
Example follows:
SELECT CASE WHEN LEN(Field1) <21 THEN field1 + SPACE(20 - LEN(field1 )) END,
CASE WHEN Field2 = 'X' THEN 'Y'
FROM Table1
Note: this query returns several records.
How do I get the information into the variable to that i can start "playing" with the data?
/Nice
Example follows:
SELECT CASE WHEN LEN(Field1) <21 THEN field1 + SPACE(20 - LEN(field1 )) END,
CASE WHEN Field2 = 'X' THEN 'Y'
FROM Table1
Note: this query returns several records.
How do I get the information into the variable to that i can start "playing" with the data?
/Nice