Skip to content

Instantly share code, notes, and snippets.

@tym-xqo
Created November 22, 2019 21:00
Show Gist options
  • Save tym-xqo/29576037cd7ff14b573c3d896dd442c9 to your computer and use it in GitHub Desktop.
Save tym-xqo/29576037cd7ff14b573c3d896dd442c9 to your computer and use it in GitHub Desktop.
-- other generic comment
/* :meta
foo: bar
columns:
- foo
- bar
- quux
- quuux
params:
- greeting
*/
select cast(1.25 as float) as foo -- float check
-- timestamp check
, strftime('%Y-%m-%d', '2019-09-09') as bar
, 'Hello' as quux -- ascii string check
, 'Björk Guðmundsdóttir' as quuux -- unicode check
union
select 42
, strftime('%Y-%m-%d','2031-05-25')
, 'yo'
, 'ƺƺƺƺ';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment