+ 2
how change all of null fiulds of the table to zero?
problem: without field name!
4 ответов
+ 33
update <table> set <field name> =0 where <field name> is null ;
//example :::
update employee set salaray = 0 where salary is null ;
update employee set name ="no name" where name is null ;
//hope it helps ☺
+ 30
i know only for single field , for more fields u can repeat the piece of code or u must look for another answer
+ 3
there is many of field !!!
+ 2
i donw know name of fields. :((