I have problem to create user running this sql script
CREATE DATABASE RegistrationForm
DEFAULT CHARACTER SET utf8
DEFAULT COLLATE utf8_general_ci;
CREATE USER RegForm_user;
GRANT ALL ON RegistrationForm.* TO 'RegForm_user'@'localhost' IDENTIFIED BY '@regformpswd';
USE RegistrationForm
# *************** create tables *****************
I receive this error
Errore
Query SQL:
CREATE USER RegForm_user
Messaggio di MySQL: Documentazione
#1396 - Operation CREATE USER failed for 'RegForm_user'@'%'
Why this error?