cc6a391810
* Added a compile time flag to compile SQLite with builtin math funcions * Added a test, improved the comments in cargo config file
8 lines
199 B
SQL
8 lines
199 B
SQL
set number_three = sqrt(9.0);
|
|
|
|
select 'text' as component,
|
|
case $number_three
|
|
when '3.0' then 'It works !'
|
|
else 'error: ' || coalesce($number_three, 'NULL')
|
|
end AS contents;
|