Para crear una Base de Datos en línea de comandos MySQL podemos correr el siguiente query:
CREATE DATABASE
DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
GRANT ALL PRIVILEGES ON
.* TO @localhost IDENTIFIED BY " ";
FLUSH PRIVILEGES;
EXIT
En el que reemplazaremos convenientemente
Nos vemos :)
No comments:
Post a Comment