Files
greptimedb/tests/cases/standalone/common/function/expression.sql
Kould 578dd8f87a feat: add isnull function (#3360)
* code fmt

* feat: add isnull function

* feat: add isnull function
2024-02-22 12:41:25 +00:00

20 lines
272 B
SQL

CREATE TABLE t(a INTEGER, ts timestamp time index);
INSERT INTO t VALUES (1, 1), (null, 2), (3, 3);
SELECT ISNULL(a) from t;
SELECT ISNULL(null);
SELECT ISNULL(1);
SELECT ISNULL(-1);
SELECT ISNULL(1.0);
SELECT ISNULL(true);
SELECT ISNULL('string');
DROP TABLE t;