- Categories:
Context functions (Session)
CURRENT_ORGANIZATION_NAME¶
Returns the name of the organization to which the current account belongs.
Syntax¶
CURRENT_ORGANIZATION_NAME()
Arguments¶
None.
Returns¶
The data type of the returned value is VARCHAR
.
Example¶
This shows how to call the CURRENT_ORGANIZATION_NAME function:
SELECT CURRENT_ORGANIZATION_NAME();Output:
+-----------------------------+ | CURRENT_ORGANIZATION_NAME() | |-----------------------------| | bazco | +-----------------------------+