Collections:
Entering Numeric Values in MySQL
How To Include Numeric Values in SQL statements in MySQL?
✍: FYIcenter.com
If you want to include a numeric value in your SQL statement, you can enter it directly as shown in the following examples:
SELECT 255 FROM DUAL; -- An integer 255 SELECT -6.34 FROM DUAL; -- A regular number -6.34 SELECT -32032.6809e+10 FROM DUAL; -- A floating-point value -3.20326809e+014
⇒ Entering Characters as HEX Numbers in MySQL
⇐ Concatenating Character Strings in MySQL
2018-03-31, 2674🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions on Transaction Management: Commit or Rollback in...
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...
Where to find answers to frequently asked questions in general areas of Microsoft SQL Server Transac...
How to obtain the number of rows found by the last SELECT statement using the FOUND_ROWS() function?...
Collections: Interview Questions MySQL Tutorials MySQL Functions Oracle Tutorials SQL Server Tutoria...