how to create database with username and password in sql server code example
Example 1: how to create new database user
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
Example 2: how to create new database user
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';