SQL空值处理

SQL空值处理web 数据库中,若是一个列没有制定值,那么值就是null,数据库中的null表示“不知道”,而不是表示“没有”,所以select null + 1 ,结果是null,由于“不知道”加1的结果仍是“不知道” SQL中使用is null,is not null来进行空值判断 select * from student where email is null select * from
相关文章
相关标签/搜索