vote up 5 vote down star
1

I have the following SQL-statement:

SELECT DISTINCT name FROM log WHERE NOT name = '' AND name LIKE '%.EDIT%';

It works fine on Postgres (returns all different names from log, which aren't empty and contain the string '.EDIT'). But on Oracle this statement doesn't work. Any idea why?

flag

79% accept rate

3 Answers

vote up 15 vote down check

SELECT DISTINCT name FROM log WHERE NOT name = '' AND name LIKE '%.EDIT%';

1) Oracle treats '' as NULL, which means the comparison "NOT name = ''" is never true or false; use "IS NOT NULL" instead. But...

2) The second condition "name LIKE '%.EDIT%' will not match an empty string anyway, making the first condition redundant.

So re-write as:

SELECT DISTINCT name FROM log WHERE name LIKE '%.EDIT%';
link|flag
Thanks for this help. It works fine! I'm such an idiot about the redundant stuff. But I also didn't know, taht Oracle counts '' as NULL. Thank you, now it works. – Mnementh Oct 27 '08 at 16:20
vote up 3 vote down

The empty string in Oracle is equivalent to NULL, causing the comparison to fail. Change that part of the query to NAME IS NOT NULL

link|flag
vote up 2 vote down

You can rewrite that query without the "NOT NAME=''" clause.

 SELECT DISTINCT name 
 FROM log
 WHERE name LIKE '%.EDIT%';

Does that work for you?

If not, in what way does it not work? Does it cause an error? Are the wrong results returned?

Please expand your question with this info :-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.