I have NULL values in my table.
SELECT [Id] ,[Mark] ,[Series] ,[Models] ,[Power] FROM [ExcelAnalysis].[dbo].[Dict] Here the screen http://imgur.com/a/kAOYA
so i try do so
update tablename set fieldname = REPLACE ( fieldname , string_pattern , string_replacement ) update [dbo].[Dict] set [Mark] = REPLACE ( [Mark] , 'NULL' , '' ) but after executing the query, NULL values i see again
How correct delete it?
nullis. And why would you want to replace it with an empty string?NULLis not a value. It represents the absence of a value.