Table of Contents
User Documentation
Ispirer Capabilities - Oracle Migration
Pricing
Oracle Round(number) function to HiRDB
Round(number) with one parameter
HiRDB database supports Round(number) with one parameter. SQLWays leaves it as is.
Oracle:
n:= round(a);
HiRDB:
SET n= round(a);
Round(number) with two parameters
HiRDB database supports Round(number) with two parameters. SQLWays leaves it as is.
Oracle:
n:= round(a,b);
HiRDB:
SET n= round(a,b);