Greetings.
Why I have not access to create new view in my database?

Here is the error:

Error

consulta SQL: DocumentaciónEditar

CREATE ALGORITHM = UNDEFINED VIEW vw_msg AS SELECT `b_post`.`id` AS `id` , `b_categorias`.`nombre` AS `nombre` , `b_hilos`.`titulo` AS `titulo` , `b_post`.`subtitulo` AS `subtitulo` , `b_post`.`autor` AS `autor` , `b_post`.`ip` AS `ip` , `b_post`.`fecha` AS `fecha` , `b_post`.`texto` AS `texto` , `b_post`.`estado` AS `estado`
FROM (
(
`b_post`
JOIN `b_hilos` ON ( (
`b_post`.`titulo` = `b_hilos`.`id`
) )
)
JOIN `b_categorias` ON ( (
`b_hilos`.`categoria` = `b_categorias`.`id`
) )
)

MySQL ha dicho: Documentación
#1142 - CREATE VIEW command denied to user 'norgeprueba_user'@'localhost' for table 'vw_msg'