English 中文(简体)
MS SQL Server - Create Users
  • 时间:2024-11-05

MS SQL Server - Create Users


Previous Page Next Page  

User refers to an account in MS SQL Server database which is used to access database.

Users can be created using either of the following two methods.

Method 1 – Using T-SQL

Syntax

Create user <username> for login <loginname>

Example

To create user name TestUser with mapping to Login name TestLogin in TestDB database, run the following query.

create user TestUser for login TestLogin

Where TestLogin is the login name which was created as part of the Login creation

Method 2 – Using SSMS (SQL Server Management Studio)

Note − First we have to create Login with any name before creating a user account.

Let’s use Login name called TestLogin .

Step 1 − Connect SQL Server and expand databases folder. Then expand database called TestDB where we are going to create the user account and expand the security folder. Right-cpck on users and cpck on the new user to see the following screen.

Database User New

Step 2 − Enter TestUser in the user name field and cpck on elppse to select the Login name called TestLogin as shown in the following snapshot.

Testuser

Step 3 − Cpck OK to display login name. Again cpck OK to create TestUser user as shown in the following snapshot.

Create Users Advertisements