Is the following possible in SQL Server 2000?

CREATE FUNCTION getItemType (@code varchar(18)) RETURNS int AS BEGIN Declare @Type tinyint Select @Type = case len(@code) WHEN 12,14,17 THEN 1 WHEN 13,15,18 THEN 2 WHEN 8,10 THEN 3 ELSE 0 END RETURN (@Type) END

Thanks

link|improve this question

What happened when you ran that in SQL Server 2000? – DOK Dec 11 '08 at 0:24
Incorrect syntax – Saif Khan Dec 11 '08 at 0:26
near "," and "end" – Saif Khan Dec 11 '08 at 0:26
feedback

3 Answers

up vote 3 down vote accepted

try this:

Select @Type = 
(select case 
WHEN len(@code) IN (12,14,17) THEN 1
WHEN len(@code) IN (13,15,18) THEN 2
WHEN len(@code) IN (8,10) THEN 3
ELSE  0
END)
link|improve this answer
Thanks mate! I did this a long time back but couldn't remember...couldn't find on msdn either and also BOL. – Saif Khan Dec 11 '08 at 0:36
take a look at Dave Markle's solution below - he uses the same case syntax but tightened up the syntax of the function itself – keithwarren7 Dec 11 '08 at 0:39
feedback

This should do it:

CREATE FUNCTION getItemType(@code VARCHAR(18))
RETURNS INT
AS
BEGIN
    RETURN CASE 
    	WHEN LEN(@code) IN (12,14,17) THEN 1
    	WHEN LEN(@code) IN (13,15,18) THEN 2
    	WHEN LEN(@code) IN (8,100)    THEN 3
    	ELSE  0
    END
END
link|improve this answer
feedback
 try  
  SELECT CASE
           WHEN LEN(@gcode) IN(x, y, z) THEN a  
         END
 etc.

or you may need

SELECT CASE LEN(@gcode)  
         WHEN x THEN a  
         WHEN y THEN a  
       END

etc.

Here's the reference.

link|improve this answer
I get the error ....incorrect syntax near the keyword IN – Saif Khan Dec 11 '08 at 0:29
feedback

Your Answer

 
or
required, but never shown

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