list_concat.sql 316 B

123456789101112
  1. /* postgres can not */
  2. /* syntax version 1 */
  3. $list = ["one","two","three","four","five"];
  4. SELECT
  5. ListConcat([], "."),
  6. ListConcat($list),
  7. ListConcat($list, ";"),
  8. ListConcat($list, Just(", ")),
  9. ListConcat($list, NULL),
  10. ListConcat($list, Nothing(String?)),
  11. ListConcat(["single"], "tail");