继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

创建mysql可更新视图

守候你守候我
关注TA
已关注
手记 247
粉丝 14
获赞 36

Summary: in this tutorial, we will show you how to create an updateable view and update data in the underlying table through the view.

In MySQL, views are not only read-only but also updateable. However in order to create an updateable view, the SELECT statement that defines the view has to follow several following rules:

  • The SELECT statement must only refer to one database table.

  • The SELECT statement must not use GROUP BY or HAVING clause.

  • The SELECT statement must not use DISTINCT in the column list of the SELECT clause.

  • The SELECT statement must not refer to read-only views.

  • The SELECT statement must not contain any expression (aggregates, functions, computed columns…)

When you create updateable views, make sure that you follow the rules above.

Example of creating updateable view

Let’s practice with an example of creating an updateable view.

First, we create a view named officeInfo against the offices table. The view refers to three columns of the offices table:  officeCodephone and city.

CREATE VIEW officeInfo  AS     SELECT officeCode, phone, city    FROM offices

Next, we can query data from the officeInfo view using the SELECT statement.

SELECT * FROM officeInfo

Then, we can change the phone number of the office with officeCode 4 through the officeInfo view by using the UPDATE statement.

UPDATE officeInfo SET phone = '+33 14 723 5555' WHERE officeCode = 4

Finally, to see the change, we can select the data from the officeInfo view by executing following query:

SELECT * FROM officeInfo WHERE officeCode = 4

In this tutorial, we have shown you how to create an updateable view and how to update data in the underlying table through the view.

Related Tutorials

原文链接:http://outofmemory.cn/mysql/view/create-sql-updatable-views

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP