我正在尝试使用Data Migration Assistant
. 不幸的是,我在程序中有一个不合格的加入(行为更改),我不知道如何解决它。
这是代码:
FROM Codebar
INNER JOIN Codebar_IdentPag ON Codebar_IdentPag.Tipo = Codebar.Tipo,
Account
INNER JOIN AccountName ON AccountId = Account.Id
LEFT JOIN AccountType2 ON AccountType2.Codigo = AccountType2Cod
LEFT JOIN AccountType ON AccountType.Codigo = AccountTypeCod
LEFT JOIN AccountPlan ON AccountPlan .Codigo = AccountPlanCod
LEFT JOIN Currency ON Currency.Codigo = CurrencyCod
LEFT JOIN Country Country1 ON Country1 .Codigo = CountryCod
WHERE Account.Id = @numAccount
AND Codebar.Id = @idCodebar
我认为问题首先出现INNER JOIN
我的问题可能是什么原因?