Is this correct ?
Select 1 where exists(select * from tablename2)
Or does it have to be like this
Select 1 FROM tablename1 where exists(select * from tablename2)
The question is "is FROM mandatory ?"
From my tests only the second one works but I would really like to have the first one work.
Thanks.
Select 1 where exists(select * from tablename2)
Or does it have to be like this
Select 1 FROM tablename1 where exists(select * from tablename2)
The question is "is FROM mandatory ?"
From my tests only the second one works but I would really like to have the first one work.
Thanks.