❮ SQL 关键字参考 IS NOT NULL IS NOT NULL 命令用于测试非空值(NOT NULL 值)。 以下 SQL 列出了 "Address" 字段中有值的所有客户: 实例 SELECT CustomerName, ContactName, AddressFROM CustomersWHERE Address IS NOT NULL; 亲自试一试 » ❮ SQL 关键字参考