vote up 2 vote down star
1

I tried searching around but couldn't find anything that would help me out.

I'm trying to do this in SQL:

declare @locationType varchar(50);
declare @locationID int;

SELECT column1, column2
FROM viewWhatever
WHERE
CASE @locationType
    WHEN 'location' THEN account_location = @locationID
    WHEN 'area' THEN xxx_location_area = @locationID
    WHEN 'division' THEN xxx_location_division = @locationID

I know that I shouldn't have to put '= @locationID' at the end of each one but I can't get the syntax even close to being correct. SQL keeps complaining about my '=' on the first WHEN line...

Help!

Thanks in advance

flag

6 Answers

vote up 5 vote down check
declare @locationType varchar(50);
declare @locationID int;

SELECT column1, column2
FROM viewWhatever
WHERE
@locationID = 
  CASE @locationType
      WHEN 'location' THEN account_location
      WHEN 'area' THEN xxx_location_area 
      WHEN 'division' THEN xxx_location_division 
  END
link|flag
i couldn't get this to work, check out my comment below... – Miles Oct 15 '08 at 21:26
As TomH noted in the comment to your reply below, you formed the SQL incorrectly. I tested mine in SQLServer 2005 and it worked fine. – TrickyNixon Oct 16 '08 at 0:48
ahhhh, stupid me. :) Thanks a bunch. This turned 30ish lines of code into 10! – Miles Oct 16 '08 at 13:51
vote up 0 vote down

I'd say this is an indicator of a flawed table structure. Perhaps the different location types should be separated in different tables, enabling you to do much richer querying and also avoid having superfluous columns around.

If you're unable to change the structure, something like the below might work:

SELECT
    *
FROM
    Test
WHERE
    Account_Location =	CASE LocationType
    					WHEN 'location' THEN @locationID
    					ELSE Account_Location END
    AND
    Account_Location_Area = CASE LocationType
    						WHEN 'area' THEN @locationID
    						ELSE Account_Location_Area END

And so forth... We can't change the structure of the query on the fly, but we can override it by making the predicates equal themselves out.

EDIT: The above suggestions are of course much better, just ignore mine.

link|flag
I don't think this is a flawed table structure. The table was set up this way so that it was self references to have an infinite amount of parent/child relations. Believe me, it was on purpose. I don't think I want to change my table structure to just use a switch statement. its nto that important – Miles Oct 15 '08 at 22:09
vote up 0 vote down

The problem with this is that when the SQL engine goes to evaluate the expression, it checks the FROM portion to pull the proper tables, and then the WHERE portion to provide some base criteria, so it cannot properly evaluate a dynamic condition on which column to check against.

You can use a WHERE clause when you're checking the WHERE criteria in the predicate, such as

WHERE account_location = CASE @locationType
                              WHEN 'business' THEN 45
                              WHEN 'area' THEN 52
                         END

so in your particular case, you're going to need put the query into a stored procedure or create three separate queries.

link|flag
vote up 0 vote down

I'm still in the same boat... I tried this (i guess i'll show my real column names, argh!):

select @msgID, account_id
from viewMailAccountsHeirachy
where @smartLocationType = 
CASE 
    WHEN 'store' THEN account_location = @smartLocation
    WHEN 'area' THEN xxx_location_area = @smartLocation
    WHEN 'division' THEN xxx_location_division = @smartLocation
    WHEN 'company' THEN xxx_location_company = @smartLocation
END

and i get this error from SQL:

An expression of non-boolean type specified in a context where a condition is expected, near 'THEN'.

Its telling me the problem is the first WHEN line...

FYI, this is all happening in a sproc, i just didn't want to have to make 4 separate select statements (I'm actually inserting these into a table right above)

link|flag
Your code is not quite the same as what TrickyNixon wrote. Take another look. You need to completely remove the "= @smartLocation" from within the THEN clauses. TrickyNixon has it right. – Tom H. Oct 15 '08 at 22:19
vote up 0 vote down

Here you go.

SELECT
   column1, 
   column2
FROM
   viewWhatever
WHERE
CASE 
    WHEN @locationType = 'location' AND account_location = @locationID THEN 1
    WHEN @locationType = 'area' AND xxx_location_area = @locationID THEN 1
    WHEN @locationType = 'division' AND xxx_location_division = @locationID THEN 1
    ELSE 0
END = 1
link|flag
vote up 0 vote down

without a case statement...

WHERE (@locationType = 'location' AND account_location = @locationID) or (@locationType = 'area' AND xxx_location_area = @locationID) or (@locationType = 'division' AND xxx_location_division = @locationID)

link|flag

Your Answer

Get an OpenID
or

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