I’m looking to get multiple fields from a foreign key - This is the setup:
Table: jobs
CompLink → Companies(id)
Table: Companies
I tried this under the advanced mode:
id,
isFeatured,
isRemote,
importId,
Companies: CompLink (Name),
Companies: CompLink (compAddress),
Companies: CompLink (country),
Companies: CompLink (compURL),
Companies: CompLink (compLogo)
but I get this error:
table name “Jobs_Companies_1” specified more than once
I get that this might be inefficient, just curious which direction to go in? Do some table join and fetch that?
Thanks,
T.