Collections:
NAME_CONST() - PS Thread ID of Given Connect
How to provide a column name for a constant in a SELECT statement using the NAME_CONST() function?
✍: FYIcenter.com
NAME_CONST(con) is a MySQL built-in function that
provides a column name for a constant in a SELECT statement.
For example:
SELECT NAME_CONST('domain', 'dba.fyicenter.com'); -- +-------------------+ -- | domain | -- +-------------------+ -- | dba.fyicenter.com | -- +-------------------+ SELECT NAME_CONST('length', LENGTH('dba.fyicenter.com')); ERROR 1210 (HY000): Incorrect arguments to NAME_CONST
Reference information of the NAME_CONST() function:
NAME_CONST(const): name Provides a column name for a constant in a SELECT statement. Arguments, return value and availability: const: Required. The constant to be named. name: Return value. The column name in the result set. Available since MySQL 4.0.
⇒ NULLIF() - NULL on Equal Values
⇐ LEAST() - Finding the Least/Minimum Value
2025-01-07, 1657🔥, 0💬
Popular Posts:
How To Generate CREATE TABLE Script on an Existing Table in SQL Server? If you want to know how an e...
Where Is the Export Dump File Located in Oracle? If you are not specifying the dump directory and fi...
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...
How To Get the Definition of a Stored Procedure Back in SQL Server Transact-SQL? If you want get the...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...