我可以使用 phpMyAdmin 设置 MySQL 事件时间表吗?

Can I set a MySQL event schedule using phpMyAdmin?(我可以使用 phpMyAdmin 设置 MySQL 事件时间表吗?)
本文介绍了我可以使用 phpMyAdmin 设置 MySQL 事件时间表吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在每天的第一分钟增加一个字段,然后一旦达到某个值,将值设置为 1.我想直接在 MySQL 中执行此操作,但最好通过 phpMyAdmin.

I want to increment a field on the first minute of every day, and then once it hits a certain value, set the value to 1. I would like to do this directly in MySQL, but preferably through phpMyAdmin.

我知道事件调度程序,等等我正在寻找一种通过 phpMyAdmin 使用和管理它的方法.这可能吗?

I am aware of the Event Scheduler, and so I'm looking for a way to use and manage it through phpMyAdmin. Is this possible?

推荐答案

It is.. 只需从 SQL 框中发出适当的 CREATE EVENT SQL.

It is.. Just issue appropriate CREATE EVENT SQL from SQL box.

但是:您的 MySQL 服务器需要启用事件调度程序并具有数据库用户的 EVENT 权限.

However: your MySQL server needs to have event scheduler enabled AND have EVENT privileges for the database user.

调用 SELECT @@event_scheduler; 会告诉您调度程序是否可用并已启用.

Calling SELECT @@event_scheduler; will tell you if the scheduler is available and enabled.

要启用事件调度器(如果它被禁用,请尝试调用 SET GLOBAL event_scheduler := 1;您需要 SUPER 权限才能成功.

To enable event scheduler if it's disabled try calling SET GLOBAL event_scheduler := 1; You need the SUPER privilege for this to succeed.

这篇关于我可以使用 phpMyAdmin 设置 MySQL 事件时间表吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)