Collections:
Numeric Literals in Oracle
How To Write Numeric Literals in Oracle?
✍: FYIcenter.com
Numeric literals can coded as shown in the following samples:
SELECT 255 FROM DUAL -- An integer 255 SELECT -6.34 FROM DUAL -- A regular number -6.34 SELECT 2.14F FROM DUAL -- A single-precision floating point 2.14 SELECT -0.5D FROM DUAL -- A double-precision floating point -0.5
⇒ Date and Time Literals in Oracle
2020-04-14, 3119🔥, 0💬
Popular Posts:
How To Verify Your PHP Installation in MySQL? PHP provides two execution interfaces: Command Line In...
What Are Bitwise Operations in SQL Server Transact-SQL? Bitwise operations are binary operations per...
What Are the Differences between DATE and TIMESTAMP in Oracle? The main differences between DATE and...
How To Get Help Information from the Server in MySQL? While you are at the "mysql>" prompt, y...
Where to find reference information and tutorials on MySQL database functions? I want to know how to...