I want to create a new user in mysql with syntax:
create user \'demo\'@\'localhost\' identified by \'password\';
But it returns an error: <
Set password that satisfies 7 MySql validation rules
eg:- d_VX>N("xn_BrD2y
d_VX>N("xn_BrD2y
Making validation criteria bit more simple will solve the issue
SET GLOBAL validate_password_length = 6; SET GLOBAL validate_password_number_count = 0;
But recommended a Strong password is a correct solution