String Interpolation, more information can be found [here](https://docs.microsoft.com/en-us/sql/t-sql/functions/formatmessage-transact-sql?view=sql-server-ver15) ## Example ```sql SELECT FORMATMESSAGE('This is the %s and this is the %s.' ,'first variable' ,'second variable') AS Result; ```