Collections:
Arithmetic Operations in Pl/SQL in Oracle
What Are the Arithmetic Operations in Oracle?
✍: FYIcenter.com
There are 4 basic arithmetic operations on numeric values as shown in the following sample script:
PROCEDURE proc_arithmetic AS addition NUMBER; subtraction NUMBER; multiplication NUMBER; division NUMBER; BEGIN addition := 7 + 8; subtraction := addition - 7; multiplication := subtraction * 5; division := multiplication / 8; -- division should contain 5 now END;
⇒ Numeric Comparison Operations in Oracle
⇐ Assign Values to Variables in Oracle
2018-08-06, 2836🔥, 0💬
Popular Posts:
How to obtain the number of rows found by the last SELECT statement using the FOUND_ROWS() function?...
Where Is the Export Dump File Located in Oracle? If you are not specifying the dump directory and fi...
How to download and install Microsoft .NET Framework Version 2.0 in SQL Server? .NET Framework Versi...
How To Download Oracle Database 10g XE in Oracle? If you want to download a copy of Oracle Database ...
How To Fix the INSERT Command Denied Error in MySQL? The reason for getting the "1142: INSERT comman...