Hi,
is it a way to join a main table to secondary table.
like this without using command
so my objective is to get all records from table A and I want to show only those fields from table B where B.Field2 ='ABC' rest will be shown as null.
Thanks
I am using crystal version 10 and oacle 10g as a database
is it a way to join a main table to secondary table.
like this without using command
Code:
select
*
from table_A A
left join table_B B on A.field1 = B.Field1 where B.field2 = 'ABC'
so my objective is to get all records from table A and I want to show only those fields from table B where B.Field2 ='ABC' rest will be shown as null.
Thanks
I am using crystal version 10 and oacle 10g as a database