You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 29, 2020. It is now read-only.
On sql queries connecting to another database is valid with query like this:
... FROM [db2].[dbo].[archive_sap] ....
When I provide schema with [], left part is "removed":
$select->from('db2].[dbo].[archive_sap') -> FROM [db2].\dbo].\archive_sap] $select->from('db2.dbo.archive_sap') -> FROM [db2.dbo.archive_sap] ... not correct
The ON part in second case is wrapped correctly .... ON [db2].[dbo].[archive_sap].[id] = ....