(SELECT c_lname, ACCT_No
FROM Clients INNER JOIN Accounts
ON Clients.c_id = Accounts.ACCT_id)Gave me the following error:
So I removed ACCT_no from the code, which resulted in an error saying it could return at most one record.
Also, I'd preferably use "Client Name" in place of "c_lname", but...