0
In Mysql would be the equivalent of
SELECT floor(4.5);
How to do the same in Oracle PL SQL?
0
In Mysql would be the equivalent of
SELECT floor(4.5);
How to do the same in Oracle PL SQL?
1
The same
select floor(4.5) from dual
FLOOR(4.5)
----------
4
0
As follows:
SELECT floor(4.5) FROM dual;
Browser other questions tagged oracle pl-sql
You are not signed in. Login or sign up in order to post.