- Categories:
Context Functions (Session)
CURRENT_ACCOUNT¶
Returns the account locator used by the user’s current session. If you want to find the account name rather than the account locator, use SHOW ORGANIZATION ACCOUNTS.
Syntax¶
CURRENT_ACCOUNT()
Arguments¶
None.
Returns¶
The data type of the returned value is VARCHAR
.
Examples¶
This shows how to call the CURRENT_ACCOUNT
function:
SELECT CURRENT_ACCOUNT();Output:
+-------------------+ | CURRENT_ACCOUNT() | |-------------------| | XY12345 | +-------------------+