vote up 0 vote down star

I need help writing a conditional where clause. here is my situation:

I have a bit value that determines what rows to return in a select statement. If the value is true, I need to return rows where the import_id column is not null, if false, then I want the rows where the import_id column is null.

My attempt at such a query (below) does not seem to work, what is the best way to accomplish this?


DECLARE @imported BIT

SELECT id, import_id, name FROM Foo WHERE
    (@imported = 1 AND import_id IS NOT NULL)
    AND (@imported = 0 AND import_is IS NULL)

Thanks.

flag

53% accept rate

3 Answers

vote up 3 vote down check

Change the AND to OR

DECLARE @imported BIT

SELECT id, import_id, name FROM Foo WHERE
    (@imported = 1 AND import_id IS NOT NULL)
    **OR** (@imported = 0 AND import_is IS NULL)
link|flag
As simple as that... – achinda99 Mar 9 at 16:06
Thanks...must be a case of the mondays... – mmattax Mar 9 at 16:07
been there... :) – Lieven Mar 9 at 16:11
vote up 1 vote down

I think you meant

SELECT id, import_id, name FROM Foo WHERE
    (@imported = 1 AND import_id IS NOT NULL)
    OR (@imported = 0 AND import_is IS NULL)
    ^^^
link|flag
vote up 0 vote down

Your query would require an OR to select between the different filters. It's better for the optimizer if you use seperate queries in this case. Yes, code redundency is bad, but to the optimizer these are radically different (and not redundant) queries.

DECLARE @imported BIT

IF @imported = 1
  SELECT id, import_id, name
  FROM Foo
  WHERE import_id IS NOT NULL
ELSE
  SELECT id, import_id, name
  FROM Foo
  WHERE import_id IS NULL
link|flag
Thanks for the suggestion, but the query I gave was just an example, it is much more complicated, so splitting them like this is not feasible at the moment. – mmattax Mar 9 at 16:58
More complexity -> more reason to break up this into the correct number of queries. stackoverflow.com/questions/266697/… – David B Mar 9 at 19:05

Your Answer

Get an OpenID
or

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