I have 2 Tables :
City:
City_ID
City_name
Dest:
Dest_ID
Dest_city_from
Dest_city_to
Now, I Insert this tables to the report, And I make link between this tables as:
City_ID= Dest_from
Now , The report show All start cities ( FROM ) , But I need to insert SQL Expression to show End Cities ( TO ) ,
or Formula Field.
I try write tis statmen in SQL Expression but it give me error.
select "Cities"."City_name" from Cities,Dest where "Cities"."City_id" = "Dest"."Dest_city_to
City:
City_ID
City_name
Dest:
Dest_ID
Dest_city_from
Dest_city_to
Now, I Insert this tables to the report, And I make link between this tables as:
City_ID= Dest_from
Now , The report show All start cities ( FROM ) , But I need to insert SQL Expression to show End Cities ( TO ) ,
or Formula Field.
I try write tis statmen in SQL Expression but it give me error.
select "Cities"."City_name" from Cities,Dest where "Cities"."City_id" = "Dest"."Dest_city_to