“Grant mysql” Código de respuesta

otorgar todos los privilegios mysql

/*
The GRANT statement is used to assign full control over specific database by providing all priviledge.
Follow below statement for assign priviledge to user
*/

Syntax: 
GRANT ALL PRIVILEGES ON database_name.* TO 'username'@'localhost';
Xanthous Xenomorph

Grant mysql

/*
The GRANT statement is used to assign full control over specific database by providing all priviledge.
Follow below statement for assign priviledge to user
*/

Syntax: 
GRANT ALL PRIVILEGES ON mydb.* TO 'myuser'@'%' WITH GRANT OPTION;

/*
I hope it will help you.
Namaste
*/
Ankur

opción de subvención de mysql

GRANT ALL ON *.* TO 'user'@'localhost';

GRANT GRANT OPTION ON *.* TO 'user'@'localhost';
LunkLoafGrumble

Respuestas similares a “Grant mysql”

Preguntas similares a “Grant mysql”

Más respuestas relacionadas con “Grant mysql” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código