Unix Technical Forum

WHERE columnName = 'this' AND anotherColumnName IS NOT NULL

This is a discussion on WHERE columnName = 'this' AND anotherColumnName IS NOT NULL within the SQL Server forums, part of the Microsoft SQL Server category; --> Using SQL Query Analyzer how do I do something like: WHERE columnName = 'this' AND anotherColumnName IS NOT NULL ...


Go Back   Unix Technical Forum > Database Server Software > Microsoft SQL Server > SQL Server

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 03-01-2008, 11:33 AM
jojowebdev@gmail.com
 
Posts: n/a
Default WHERE columnName = 'this' AND anotherColumnName IS NOT NULL

Using SQL Query Analyzer how do I do something like:

WHERE columnName = 'this' AND anotherColumnName IS NOT NULL

I.E.
SELECT *
FROM CES_DATA
WHERE DIV = 'MW'
AND Not IsNull RO
ORDER BY RO

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 03-01-2008, 11:33 AM
ZeldorBlat
 
Posts: n/a
Default Re: WHERE columnName = 'this' AND anotherColumnName IS NOT NULL


jojowebdev@gmail.com wrote:
> Using SQL Query Analyzer how do I do something like:
>
> WHERE columnName = 'this' AND anotherColumnName IS NOT NULL
>
> I.E.
> SELECT *
> FROM CES_DATA
> WHERE DIV = 'MW'
> AND Not IsNull RO
> ORDER BY RO


You were close:

select *
from CES_DATA
where DIV = 'MW'
and RO is not null
order by RO

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 10:20 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com