Closed GoogleCodeExporter closed 9 years ago
Hi James,
Please can you provide a bit more information - what you were attempting to do,
what you expected to see, what wasn't there when you expected?
Original comment by marxjohn...@gmail.com
on 26 Jan 2015 at 3:55
Something along the lines of SELECT * FROM city WHERE population='[null
value]', although I also think i tried various other versions of this, such as
'', 'NULL', "", etc. Population at this point was a text field. It's not the
highest priority issue.
Original comment by jajwil...@gmail.com
on 27 Jan 2015 at 9:51
Hi James
The correct SQL syntax for that example would be,
SELECT * FROM city WHERE population IS NULL
In SQL terms, if a field is null it contains so value, so isn't considered
"equal to" anything
http://www.postgresql.org/docs/current/static/functions-comparison.html
As this isn't an issue with ORDS, I'll close it as Invalid.
Original comment by marxjohn...@gmail.com
on 27 Jan 2015 at 9:56
Original issue reported on code.google.com by
jajwil...@gmail.com
on 26 Jan 2015 at 3:50