like_multiline.sql 72 B

123
  1. SELECT
  2. "abc\ndef" LIKE "%f" AS match,
  3. "abc\ndef" LIKE "%a" AS no_match;