A
|
acpan 11/25/2020 |
>>My end result is to hide rows that contain a certain number of detail records. |
B
|
bgohio_GIS author 11/30/2020 |
>>My end result is to hide rows that contain a certain number of detail records. Not sure about the first part, but if you want to achieve the end result, maybe just modify your master table SQL Query (and maintain your master-child relation) as follows: select from master_table as t1 where (select count() from detail_table as t2 where t2.id_group = t1.id) < 3 ; With that, only records in master table with the detail rows less than 3 will be returned in your list. Try the demo.
|