If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Microsoft SQL Server > tricky query

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-16-11, 03:22
mrpcguy mrpcguy is offline
Registered User
 
Join Date: Mar 2004
Posts: 140
tricky query

edit:
i got stuck with a query that mess up my head

I have a column in a table that contains 0, 1 and NULL. Datatype is BIT.
Furthermore i got a variable with value either 0 and 1 from a webform.

What i need to do is to compare those values and make a WHERE statement like this:
if variable =0 show rows with 0 and 1
if variable =1 show rows with only 0


thx in advance //Mr

Last edited by mrpcguy; 12-16-11 at 05:17.
Reply With Quote
  #2 (permalink)  
Old 12-16-11, 06:15
Wim Wim is offline
Registered User
 
Join Date: Nov 2004
Posts: 1,280
This should work:
Code:
DECLARE @Variable int
SET @Variable = 0

SELECT @variable as variable, * 
FROM #DaTable
WHERE (
	(@variable = 0 AND aColumn IS NOT NULL) 
		OR
	(@variable = 1 AND aColumn = 0)
	)

SET @Variable = 1

SELECT @variable as variable, * 
FROM #DaTable
WHERE (
	(@variable = 0 AND aColumn IS NOT NULL) 
		OR
	(@variable = 1 AND aColumn = 0)
	)
__________________
With kind regards . . . . . SQL Server 2000/2005/2008/2008 R2 Earned beers: 16
Wim
Beware of bugs in the above code; I have only proved it correct, not tried it. -- Donald Knuth
Grabel's Law: 2 is not equal to 3 -- not even for very large values of 2.
Pat Phelan's Law: 2 very definitely CAN equal 3 -- in at least two programming languages
Reply With Quote
  #3 (permalink)  
Old 12-16-11, 07:24
mrpcguy mrpcguy is offline
Registered User
 
Join Date: Mar 2004
Posts: 140
seems to work fine, thx
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On