Can you help me with this question please.
I'm not a formally schooled DB/SQL person, and reading the help info just confused me more so.
i have - what i thought - was a simple query
select * from orders
where status <> 'HOLD'
the actual statement is more complex -with joins and such.
basically i want all orders that do NOT have a status which is HOLD
however, what appears to happen is that - i do NOT get those orders who's status is NULL and i am afraid to include the ( ... or status is NULL) to avoid orders that I may not what - do to other selection criteria
is my thinking incorrect?
must i include the additional criteria?
thank you
I'm not a formally schooled DB/SQL person, and reading the help info just confused me more so.
i have - what i thought - was a simple query
select * from orders
where status <> 'HOLD'
the actual statement is more complex -with joins and such.
basically i want all orders that do NOT have a status which is HOLD
however, what appears to happen is that - i do NOT get those orders who's status is NULL and i am afraid to include the ( ... or status is NULL) to avoid orders that I may not what - do to other selection criteria
is my thinking incorrect?
must i include the additional criteria?
thank you