I created a stored procedure as follows:
create procedure [dbo].[ModifCodMedecin] @Table nvarchar(10),@Code nvarchar(7) as
DECLARE @rqt as NVARCHAR(4000)
SET @rqt = 'UPDATE' + @Table + 'SET '+ @Code + ' = Med.New_Code_exploitation from ' + @Table +
' inner join Medecin_New Med on ' + @Table + '.' + @Code + ' = Med.[Ancien_Code])'
exec (@rqt)
When I executed the above, an error is produced:
ModifCodMedecin 'Table','code' Incorrect syntax near '='.
Try this:
You had a few missing spaces, one after
UPDATE
and one beforeSET
. As well as the additional parenthesis at the end.