Ms Sql Server 简明教程
MS SQL Server - Create Users
用户是指用于访问数据库的 MS SQL Server 数据库中的帐户。
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
Example
要在 TestDB 数据库中用映射到登录名“TestLogin”的用户名“TestUser”创建,请运行以下查询。
To create user name 'TestUser' with mapping to Login name 'TestLogin' in TestDB database, run the following query.
create user TestUser for login TestLogin
其中“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 − 首先,在创建用户帐户之前,我们必须使用任意名称创建登录名。
Note − First we have to create Login with any name before creating a user account.
让我们使用名为“TestLogin”的登录名。
Let’s use Login name called 'TestLogin'.
Step 1 − 连接 SQL Server 并展开数据库文件夹。然后展开“TestDB”数据库(我们将在其中创建用户帐户),并展开安全文件夹。右键单击用户并单击新建用户以查看以下屏幕。
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-click on users and click on the new user to see the following screen.
Step 2 − 在用户名字段中输入“TestUser”并单击省略号以选择名为“TestLogin”的登录名,如下面的快照所示。
Step 2 − Enter 'TestUser' in the user name field and click on ellipse to select the Login name called 'TestLogin' as shown in the following snapshot.
Step 3 − 单击确定以显示登录名。再次单击确定以创建“TestUser”用户,如下面的快照所示。
Step 3 − Click OK to display login name. Again click OK to create 'TestUser' user as shown in the following snapshot.