mysql中删除值为null的数据的方法
1.首先,在命令行中启动MySQL服务;
sudo service mysql start
2.MySQL服务启动后,输入用户名和密码登录MySQL;
mysql -u root -p
3.登录MySQL数据库后,选择进入一个数据库;
user 数据库名;
4.在数据库中,使用select * from命令查询值为null的数据;
select * from user where second is null;
5.最后,使用delete命令即可对值为null的数据进行删除。
delete from record where time is null;