MySql 中的自动视图更新

Automatic View Update in MySql(MySql 中的自动视图更新)
本文介绍了MySql 中的自动视图更新的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当底层表在 MySQL 中更新而不查询时,视图是否会自动更新?

Does the view get automatically updated when the underlying tables get updated in MySQL without querying?

进一步说明 - 如果我更新表,那么即使我没有在视图上运行任何查询,视图也会更新吗?

To further elaborate - if I update the table then does the view get updated even if I don't run any query on the view?

推荐答案

每次在视图上执行查询时,它都会获取当前在表中的数据 - 包括所有已提交的事务,但不包括那些 UPDATE 或 INSERT 查询尚未提交.

Every time you execute a query on the view, it will fetch the data currently in tables - included all committed transactions on it, but not those UPDATE or INSERT queries taht have still not been committed.

当然,一旦你得到了那个数据,它就不会再发送了.有触发器,但您的数据库客户端仍然必须查询视图数据.

but of course, once you have got that data, it will not send it again. There are triggers for that, but still your database client has to query the view data out.

再澄清一点:视图不存储(缓存)数据,它是一个逻辑结构,将始终查看底层表.

To clear up a bit more: View does not store (cache) the data, it is a logical structure and will always look into the underlying tables.

这篇关于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:按日期将数量值拆分为多行)