--根据条件删除数据:
ALTER TABLE table_name DELETE WHERE 条件;
--根据条件修改数据:
ALTER TABLE table_name UPDATE column= value WHERE 条件
--判断 非null
select * from table_name where user_sources is not null
--判断 null
select * from table_name where user_sources is null