Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个视图,现在我已将数据添加到我的原始数据库中,我希望同步添加的数据或更新我的视图。
我创建的视图查询:
CREATE VIEW test1.view AS SELECT * FROM test2.name;
你能帮助我如何更新我的观点吗?
无需“更新”视图。它会自动与您的实际数据保持同步。
更新test2表格后,您的test1视图将立即重新同步。
test2
test1
没有办法更新 aVIEW因为它是虚拟表并且只是语句的投影SELECT。
VIEW
SELECT
如果要更新它,则需要更新基表test2.name。对基表的任何修改都将反映在VIEW.
test2.name