8
Come arrotondare una media a 2 decimali in PostgreSQL?
Sto usando PostgreSQL tramite il 'sequel' della gemma di Ruby. Sto cercando di arrotondare al secondo decimale. Ecco il mio codice: SELECT ROUND(AVG(some_column),2) FROM table Ottengo il seguente errore: PG::Error: ERROR: function round(double precision, integer) does not exist (Sequel::DatabaseError) Non ottengo alcun errore quando eseguo il seguente codice: SELECT ROUND(AVG(some_column)) …
192
sql
ruby
postgresql
sequel