convert EMPTY fields to NULL?
how to insert null to an EMPTY cell in SQL SERVER...
i.e, in a field, i enter some values and deleted it. so, it is considered as EMPTY field and not null. i need a query to make that field <NULL>
can anyone help me?
i.e, in a field, i enter some values and deleted it. so, it is considered as EMPTY field and not null. i need a query to make that field <NULL>
can anyone help me?
Mikiko
Curtidas 0
Respostas
Chromusmaster
18/04/2019
how to insert null to an EMPTY cell in SQL SERVER...
can anyone help me?
can anyone help me?
The logic of any update via the database is this:
UPDATE TABLE SET FIELD=NULL WHERE SENTENCE
GOSTEI 0