SYSTEM_USER function in SQL Server
This article will show you in detail how to use the SYSTEM_USER handler function in SQL Server with specific syntax and examples to better visualize and capture the function.
Describe
The SYSTEM_USER function returns the username of the current user in the SQL Server database.
Syntax
To use the SYSTEM_USER statement in SQL Server, we use the following syntax:
SYSTEM_USER
- There are no parameters and arguments in the statement.
Note :
- If the current user logs in to SQL Server with Windows Authentication, the SYSTEM_USER function will return the username information in the DOMAINuser_name format.
- If the current user logs on to SQL Server using SQL Server Authentication, the SYSTEM_USER function will return the username information in the user_name format.
- Do not put parentheses () after the SYSTEM_USER function.
- See more CURRENT_USER, USER_NAME and SESSION_USER functions.
- SYSTEM_USER can be used in later versions of SQL Server: SQL Server 2017, SQL Server 2016, SQL Server 2014, SQL Server 2012, SQL Server 2008 R2, SQL Server 2008, and SQL Server 2005.
For example
See how to use the SYSTEM_USER statement in SQL Server.
SELECT SYSTEM_USER;
Result: 'test_domainquantrimang' (đăng nhập bằng Windows Authentication)
SELECT SYSTEM_USER;
Result: 'quantrimang' (đăng nhập bằng SQL Server Authentication)
Previous article: SESSIONPROPERTY function in SQL Server
Next article: USER_NAME function in SQL Server
4 ★ | 2 Vote
You should read it
May be interested
- USER_NAME function in SQL Serverthis article will show you in detail how to use the function to handle the user_name statement in sql server with specific syntax and examples to better visualize and capture the function.
- SPACE function in SQL Serverthe space function in sql server is used to return a string with the number of spaces specified in the statement.
- STR function in SQL Serverthe article will explore and show you how to use str function to return character data converted from digital data in sql server.
- STUFF function in SQL Serverthe article will learn and show you how to use stuff function to insert a string into another string.
- UPPER function in SQL Serverthe article will explore and show you how to use upper function in sql server to convert letters in a specified string to uppercase.
- SUBSTRING function in SQL Serverthe article will explore and guide you how to use the substring function in sql server to extract a substring from a specified string.