SELECT {Contact}.* from {Contact}
SELECT * from {Contact}
SELECT {MY_ENTITY}.*, group1.*, group2.* FROM {MY_ENTITY} INNER JOIN {GROUP} group1 ON (group1.[Id] = {MY_ENTITY}.[Group1_Id]) INNER JOIN {GROUP} group2 ON (group2.[Id] = {MY_ENTITY}.[Group2_Id])
Tiago Bernardo wrote:
I have similar problem, anyone has solution for this?
I believe the possible solutions are still the previous presented.
sdb da wrote:
Hello sbd da,
The query example on Tiago's post does not warrant use of Advanced Query. You can do that query using an aggregate without any problem and let the platform generate the correct aliases and attribute expansions.
Do you have a specific example of a query which you can't do on an aggregate which you need help with ?
Ricardo Silva