我試圖運行此SQL來更新表。問題是我需要一個連接才能更新正確的記錄。這是我想出迄今:如何使用加入寫入更新在哪裏條款
Update UserProfile
set UserProfile.PropertyValue = 'Test'
join ProfilePropertyDefinition
on ProfilePropertyDefinition.Id = UserProfile.PropertyDefinitionId
where UserProfile.UserId = 11
and ProfilePropertyDefinition.PortalID = 0
and ProfilePropertyDefinition.PropertyName = 'Address1'
and ProfilePropertyDefinition.PropertyCategory = 'Address'
這是我得到的消息:關鍵字「加入」附近
不正確的語法。
謝謝,僅此而已。 –