For example:
select * from MyTable
where fieldx = <NULL
This doesn't work.
How should it be?Try this:
select * from MyTable where fieldx IS NULL
Terri
select * from MyTable
where fieldx = <NULL
This doesn't work.
How should it be?Try this:
select * from MyTable where fieldx IS NULL
Terri
No comments:
Post a Comment