Hi,
I created a grid with the following sql to join all the records from 2 tables:
select ta.column1 as ta_column1 from tableA ta
union all
select tb.column1 as tb_column1 from tableB tb
When I run the application, it does shows all the records in the grid. However, when I tried using advanced search, it will prompt error.
Also, I noticed that in the field folder, it only shows the field (ta_column1) from tableA. I need to use the auto lookup for the field in tableB thus I need those fields in tableB to appear.
Can someone kindly advise? Thanks.