Hi,I have a table. I have some sensitive data that I don't want to display that sensitive data. The columns I want to abstract areFirstname varchar(50) not nullLatname varchar(50) not nulldob datetime not nulladdressline1 varchar(50) nulladressline2 varchar(50) nullcity varchar(50) nullpostalcode varchar(20) nullI want to display null values as nulls empty as empty not null as numbersHow can I do that?
↧