Hi,
is it a way to join a main table to secondary table.
like this WITHOUT using COMMAND feature.
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.
I can't use command because i am already using multivalue parameter in the record selection formula.
and i tried to use command and created a link between normal table and command table but the processing is really really slow.
so is there any other way for this problem.
I am using crystal version 10 and oacle 10g as a database
Thanks
is it a way to join a main table to secondary table.
like this WITHOUT using COMMAND feature.
Code:
select
*
from table_A A
left join table_B B on A.field1 = B.Field1 and 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.
I can't use command because i am already using multivalue parameter in the record selection formula.
and i tried to use command and created a link between normal table and command table but the processing is really really slow.
so is there any other way for this problem.
I am using crystal version 10 and oacle 10g as a database
Thanks