Collections:
Argument Type Auto-Conversion
What Is Argument Type Auto-Conversion?
✍: FYIcenter.com
Argument Type Auto-Conversion is a process that automatically
convert an actual argument into the type expected by the function.
For example, CHAR() expects a list of integers as arguments. If non-integers are provided, they will be automatically converted into integers. For example:
SELECT CHAR(70, '89', 73.1, 98.9, 1.01E2, '110th Street', 116, 101, 114); -- +-------------------------------------------------------------------+ -- | CHAR(70, '89', 73.1, 98.9, 1.01E2, '110th Street', 116, 101, 114) | -- +-------------------------------------------------------------------+ -- | FYIcenter | -- +-------------------------------------------------------------------+
⇐ Variable Number of Arguments
2023-11-15, 1190🔥, 0💬
Popular Posts:
What Is a Dynamic Performance View in Oracle? Oracle contains a set of underlying views that are mai...
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...
Where to find MySQL database server tutorials? Here is a collection of tutorials, tips and FAQs for ...
Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of f...