Hi, For this test I use this table:
drop table if exists test; create table test(minutes numeric(12,2)); insert into test values(1200); select sum(minutes)/60 from test; When I execute this I get as result 2E+1. How can I get a more readable output? -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/h2-database/e8cafc31-c533-4342-a51b-cc6273da42f4n%40googlegroups.com.
