opam: update
[sqlgg.git] / test / float.sql
blobc3ed2d4f79514409d662b987b4920ebfc5f5483f
1 create table transactions (amount float not null, `date` datetime);
2 -- @insert
3 insert into transactions values;
4 -- @select
5 select amount + 2.5 from transactions where `date` > @date and amount > @limit;