Viewing 3 posts - 1 through 4 (of 4 total)
The second query can be
select * from table1 t0
where t0.status>=0
and exists (
select...
October 3, 2007 at 10:01 am
#738680
Hi, Paul
The first query can be like this
where t0.status=0
and not exists (
select t2.id1 from table1 t2
where...
October 3, 2007 at 9:46 am
#738672
Hey, paul, it's me, Jiangfeng. I figured out the solution already. Try below, should be working....
select t0.* from table1 t0 where
not exists (
select t2.id1 from table1 t2 where
t0.reference =...
October 3, 2007 at 9:05 am
#738645