Subscribe to Updates
Get the latest creative news from FooBar about art, design and business.
Browsing: function
DECLARE @ReplaceString CHAR(2) SET @ReplaceString = ‘C:’ UPDATE [DATABASENAME].[dbo].[TABLENAME] SET TABLENAME= REPLACE(TABLENAME, LEFT(TABLENAME, 2),@ReplaceString) WHERE LEFT(TABLENAME,2) = ‘P:’