0

I wrote this statement:

TRUNC (v_Valutazione, 2);

because I have a v_Valutazione value like this:

-,9165786879898

In this way, with the trunc function, I obtain -,91.

I want instead something like -,92 .

Is this possible with one function?

sharkbait
  • 2,980
  • 16
  • 51
  • 89

1 Answers1

2

The word you are looking for, sir, is round()

David Jashi
  • 4,490
  • 1
  • 21
  • 26