Simple syntax to create a super user (for editing users and dropping schemas etc)
CREATE USER 'superuser'@'%' IDENTIFIED BY '[password]'; GRANT ALL PRIVILEGES ON *.* TO 'superuser'@'%' WITH GRANT OPTION; FLUSH PRIVILEGES;
Easy as that init
A bunch of ramblings about PHP programming, JQuery, MySQL and other 'stuff'
Simple syntax to create a super user (for editing users and dropping schemas etc)
CREATE USER 'superuser'@'%' IDENTIFIED BY '[password]'; GRANT ALL PRIVILEGES ON *.* TO 'superuser'@'%' WITH GRANT OPTION; FLUSH PRIVILEGES;
Easy as that init