[Date Prev][Date Next][Thread Prev][Thread Next]
[Author Index]
[Date Index]
[Thread Index]
[SQR-USERS Info]
[SQRUG Home Page]
Re: quote-space-quote -Reply
- Subject: Re: quote-space-quote -Reply
- From: Jim Hardesty <jhardest@LMBERRY.COM>
- Date: Thu, 21 Oct 1999 08:23:11 -0400
>>> Keep in mind this **silliness** of every column being not null seems to be
PeopleSoft specific
It isn't silliness when you want to write a query using <>.
for example if sales type is null for non-sales employees, this query does not
return non-sales employees.
select name, deptid
from employee_tbl
where sales_type <> 'B'
not much fun having to put 'and not null' on bunches of queries.
jim