我使用 Firebird db,并且我有一个表,它使用 Join 显示其他表中的一些字段。在使用 Delphi 制作的软件 UI 中,我使用 dblookup 更改 ID 并设置外部表值。
一旦用户更改了 dblookup 值,我想在 dblabel 组件中显示其他连接字段。有没有不使用刷新的自动方法?
请指教
SQL:
select
table1.f_id,
table1.f2_id,
table1.f_name,
table2.alias_name, //<<<<<--- this is the field I want to display
from table1
left outer join table2 on (table1.f2_id = table2.f2_id)