Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have the following tables on Data Manager:
TABLE A | ||
NAME | FIELD1 | FIELD2 |
a | ||
b | ||
a |
TABLE B | ||
NAME | FIELD1 | FIELD2 |
a | 3 | x |
b | 2 | x |
c | 4 | x |
a | 3 | x |
a | 3 | x |
and I need to make App with a table C like this:
TABLE C | |||
NAME | A.FIELD1 | A.FIELD2 | B.FIELD1 |
a | x | x | 3 |
b | x | x | 2 |
c | x | x | 4 |
when B.FIELD1 is the first a.name occurency on table B. How can I do it without Associations ?
BR
Giuseppe