I\'m trying to update sum columns data like this:
update
tableName
set
score = myFunction(tableName.id)
In other hands I want to have a t
Try using the full name of the function, including the database and schema name:
update
tableName
set
score = ..myFunction(tableName.id)
I think only the schema name is needed, but I've gotten in the habit of putting both.
The documentation explains that at least the two part name is needed. If you don't know what schema are, then the following will probably work:
update
tableName
set
score = dbo.myFunction(tableName.id)