Hello,
I want to do select like this :
select t1.col_2
from table_1 t1, table_2 t2
where t1.col_1 = t2.col_1 (+)
The above is correct syntax for Oracle.
What is the correct syntax for access.
(Not the syntax : left outer join table_1 on table_2 etc... , but something
like (+), BTW - what is the table that (+) stands besides it).
Thanks :)
I want to do select like this :
select t1.col_2
from table_1 t1, table_2 t2
where t1.col_1 = t2.col_1 (+)
The above is correct syntax for Oracle.
What is the correct syntax for access.
(Not the syntax : left outer join table_1 on table_2 etc... , but something
like (+), BTW - what is the table that (+) stands besides it).
Thanks :)
Comment