I have a T-SQL stored procedure join which I need to convert to a MySQL join. I’m not sure of the exact syntax.
T-SQL code:
SELECT username
FROM wattsure..be_user_profiles bup
JOIN wattsure..be_users bu
ON bup.user_id = bu.id
WHERE company_name = @installer
AND [group] = 6
1 Answer