Uncategorized MySQL: Create Super User with access to all tables Posted December 5, 2020 Ricardo Malla CREATE USER ‘username’ IDENTIFIED BY ‘password’; GRANT ALL PRIVILEGES ON *.* TO ‘username’@’%’