php mysql删除语句,怎么删除指定id中某个字段的值?

假如表名为user
表结构如下
实现删除指定id=3其中name字段的值

idname
1张三
2李四
3王五
4赵六

更新置空不行吗?
update user set name= '' where id =3;