Skip to main content

Administration Commands

Grant database privileges for a user

GRANT ALL ON example_database.* TO 'example_user'@'%' WITH GRANT OPTION;

Disable primary key requirement

SET GLOBAL sql_require_primary_key = 0;