This works only if I change select individual tblDomain columns. I would like to select all columns, tblDomains.*
Output
SELECT tblDomain."",tblAgent.country AS agentCountryCode FROM tblDomain INNER JOIN tblAgent ON tblDomain.agentId = tblAgent.id WHERE isEnabled = 'Y' AND tenantId = '7da63ae0-f70b-11e8-983f-1231322cbdb6'
Hello,
I am trying to select ALL the columns from a table and join another table and select only 1 column.
This works only if I change select individual tblDomain columns. I would like to select all columns, tblDomains.*
Output
Is there any way to do this?
Information