mysql grant code example
Example 1: mysql add user with all privileges
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
FLUSH PRIVILEGES;
Example 2: mysql grant all privileges to a user
GRANT ALL PRIVILEGES ON database_name.* TO 'username'@'localhost';
Example 3: create database and grant user rights mariadb
create database [DB name];
CREATE USER '[DB_User_Name]'@'localhost' IDENTIFIED BY '[DB_Password]';
GRANT ALL PRIVILEGES ON [DB_Name].* TO '[DB_User_Name]'@'localhost';
show grants for 'demouser'@'localhost';
FLUSH PRIVILEGES;
Example 4: grant all privileges mysql
Syntax:
GRANT ALL PRIVILEGES ON database_name.* TO 'username'@'localhost';
Example 5: mysql grant
-- Grants list
SELECT * FROM information_schema.user_privileges;
SELECT CONCAT('SHOW GRANTS FOR ''',user,'''@''',host,''';') FROM mysql.user;
-- Grant a user
GRANT SELECT, UPDATE ON db_name.table_name TO 'my_user'@'localhost';
GRANT SELECT ON *.* TO 'my_user'@'localhost';
GRANT ALL PRIVILEGES ON db_name.* TO 'my_user'@'localhost';
--Display user grants
SHOW GRANTS FOR 'my_user'@'localhost';
Example 6: mysql grant
if(curl_exec($ch) === false)
{
echo 'Curl error: ' . curl_error($ch);
}
else
{
echo 'Operation completed without any errors';