Hi,

I can't reproduce the problem with the query you provided. Please post
a complete, reproducible test case. A reproducible test case
*includes* all the required "CREATE TABLE" statements and if necessary
all the data. This includes the problem described by Rami and it
includes the problem described by Evan. My test case:

drop all objects;
create table tableOne(id int);
create table tableTwo(a_id int);
insert into tableOne values(1), (2), (null);
insert into tableTwo values(1), (3), (null);

SELECT A.* FROM tableOne AS A
LEFT OUTER JOIN tableTwo ON A.ID = tableTwo.A_ID
WHERE tableTwo.A_ID Is Null;

Regards,
Thomas

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to