Answers for "how to create a user in sql database"

SQL
2

create user sql server

/*You can also create a login using the T-SQL command.*/
CREATE LOGIN MyLogin WITH PASSWORD = '123';
Posted by: Guest on December-04-2020
1

create user sql

-- Creates the login AbolrousHazem with password '340$Uuxwp7Mcxo7Khy'.  
CREATE LOGIN username   
    WITH PASSWORD = 'password';  
GO  

-- Creates a database user for the login created above.  
CREATE USER AbolrousHazem FOR LOGIN AbolrousHazem;  
GO
Posted by: Guest on July-14-2020

Code answers related to "how to create a user in sql database"

Code answers related to "SQL"

Browse Popular Code Answers by Language