COMO DAR DE ALTA UN USUARIO EN MYSQL
grant all on cbtis.* to 'juanito'@'localhost' identified by '123'
grant = conceder
all = TODO (insert, update, delete, select, etc..)
cbtis = BD
.* = Todas las tablas
to = A...
'juanito' = Usuario
'localhost = Computadora o servidor'
identified by = Establece el password
Por: Alexa Olvera
grant = conceder
all = TODO (insert, update, delete, select, etc..)
cbtis = BD
.* = Todas las tablas
to = A...
'juanito' = Usuario
'localhost = Computadora o servidor'
identified by = Establece el password
Por: Alexa Olvera


Comentarios
Publicar un comentario