Hi, I’m new in scriptcase.
I have two table:
TABLE A
IDcustomer
name
TABLE B
IDCustomer
properties
So a customer can have more properties.
If I use the
SQL: SELECT IDcustomer, name FROM TABLE_A LEFT JOIN TABLE_B ON TABLE_A.IDcustomer = TABLE_B.IDcustomer)
and I search a customer with the property “aaa”, I get the result:
1 John
1 John
So “John” is shown twice, because he has 2 properties (i.e. “aaa” and “bbb”)
It’s possible to show distinct rows in the grid result ?
Thanks