HI,
I need to create a report or something I can use inside a layout from an SQL query and maybe PHP
At this point, I want to just list all records linked to a primary_account_id, but in the future, I'd love to greatly expand on this
This, for example, is the current query I want to use this time, though the option to use more advanced queries in the future would be a great help to me
I need to create a report or something I can use inside a layout from an SQL query and maybe PHP
At this point, I want to just list all records linked to a primary_account_id, but in the future, I'd love to greatly expand on this
This, for example, is the current query I want to use this time, though the option to use more advanced queries in the future would be a great help to me
Code:
select * FROM work_record wr where wr.account_id IN (SELECT id FROM account WHERE primary_account_id = '64ad54e22412eccc8');
Comment