I want to update Data_type where Data_Type contains Null or strings except D
if there is any string how could i code it
Update Table_Name
Set Data_Type='D'
Where Data_type is Null
or Data_type = ' ' or like Data_type %[A-C]% or Data_Type %[e-z]%
Go
--