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, 3196🔥, 0💬
Popular Posts:
How To List All User Names in a Database in SQL Server? If you want to see a list of all user names ...
Where Is the Export Dump File Located in Oracle? If you are not specifying the dump directory and fi...
How To Verify a User name with SQLCMD Tool in SQL Server? The quickest way to verify a user name in ...
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...
How To Convert Numeric Values to Integers in SQL Server Transact-SQL? Sometimes you need to round a ...