Automatic View Update in 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 中的自动视图更新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MySql 中的自动视图更新
基础教程推荐
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 在多列上分布任意行 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
