left_join_null_column.sql 218 B

123456789
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. USE plato;
  4. $t = [<|"x":"150", "y":1, "z":Null|>, <|"x":"150", "y":2, "z":Null|>];
  5. SELECT * FROM Input1 AS a LEFT JOIN AS_TABLE($t) AS b ON a.key = b.x ORDER BY key, y;