Finally found a database with populated tables. Here is the code:select <some fields from tbl1> from mkt_person as tbl1join mkt_account as tbl2 on tbl2.id = tbl1.mkt_account_id
How can I get leads which are member to a given account? I am aware of tables mkt_account and mkt_person however the mkt_account is always empty and the field mkt_account_id in mkt...