mysql 创建view,function,procudure的注意事项
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 创建view,function,procudure的注意事项相关的知识,希望对你有一定的参考价值。
创建 view 会有 DEFINER=admin
@localhost
可以通过Navicat修改,设计View-->adanced修改
创建 function 会有 DEFINER=admin
@localhost
可以通过Navicat修改,双击函数-->adanced修改
存储过程 会有 DEFINER=admin
@localhost
可以通过Navicat修改,双击函数-->adanced修改
show create event event_awr_resetpartition
SHOW EVENTS
show create event event_awr_getmysqlStatus;
select * from information_schema.events where EVENT_name=‘event_awr_getMysqlStatus‘
查看trigger show triggers;
以上是关于mysql 创建view,function,procudure的注意事项的主要内容,如果未能解决你的问题,请参考以下文章
在 VIEW 中使用的 Mysql 函数不会返回正确的结果。
MySQL 5.7 create VIEW or FUNCTION or PROCEDURE
ERROR 1356 (HY000): View 'mysql.user' references invalid table(s) or column(s) or function(s) or def