3 lines
191 B
SQL
3 lines
191 B
SQL
-- in SQLite, we provide our own unicode-aware lower function
|
|
-- see https://github.com/sqlpage/SQLPage/issues/452
|
|
select 'text' as component, COALESCE(lower(NULL), 'It works !') AS contents; |