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, 2399🔥, 0💬
Popular Posts:
What is test testing area for? The testing area is provided to allow visitors to post testing commen...
How AdventureWorksLT tables are related in SQL Server? There are 12 user tables defined in Adventure...
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...
How To Convert Numeric Expression Data Types using the CONVERT() Function in SQL Server Transact-SQL...
How AdventureWorksLT tables are related in SQL Server? There are 12 user tables defined in Adventure...