PostgreSQL空值的判断

PostgreSQL空值的判断

  • 空值判断
  • 非空判断
  • 总结

空值判断

-- 查询为空的 is null,sql简写isnull
select * from employees where manager_id isnull;
select * from employees where manager_id is null;

非空判断

-- 查询不为空的 is not null;sql简写notnull
select * from employees where manager_id is not null;
select * from employees where manager_id notnull;

总结

PostgreSQL空值的判断_第1张图片

你可能感兴趣的:(postgresql,postgresql,java)