Hi,
I have two tables, one containing account details and the second containing the account history. I'm trying to pull the date the account was last updated along with the account details in a single query;
SELECT
a.id, a.contact_name, a.username, a.status, b.timestamp
FROM
accounts a...