Detailed explanation of the principle and usage of MySQL views

Detailed explanation of the principle and usage of MySQL views

This article uses examples to illustrate the principles and usage of MySQL views. Share with you for your reference, the details are as follows:

In this article:

  • What is a view
  • Creating a View
  • View View
  • View Modification
  • Deleting a view
  • Data Operations on Views

Release date: 2018-04-13


What is a View:

  • A view is a virtual table based on query results . The table from which the data comes is called the base table.
  • The creation and deletion of views does not affect the base table.
  • Insertion and modification operations of the view will affect the basic table.
  • If the view is derived from multiple base tables, the base tables cannot be modified.
  • Uses of views:
    • 1. The view is based on the query results, so that the view can hide some data information in the base table that should not be displayed to the user (for example, a developer needs a user information table, but should not show his user's password information.)
    • 2. A view is a virtual table that can store query information for easy operation.
    • ......


Create a view:

  • Syntax: create view view name as select statement [with check option]; [select statement can query results from multiple tables: joint query, join query]
    • With check option will restrict insert and modify operations based on conditional statements such as where (for example, if the retrieved view data is male, it is not allowed to change male to female)
        create view man_info as select * from student where gender="male";

Replenish:

  • There is another option for creating a view: view algorithm (not described here, you can search Baidu if you want to know)


Check out the view:

  • A view is a virtual table. All table view statements can be used in the view.
    • View all views: show tables/views;
    • View the view structure: desc/describe/show columns from view name;
    • View the view creation statement: show create table/view view name;

View modification:

  • Sometimes a view definition error may occur, so a view modification operation is performed.
  • Syntax: alter view view name as new select statement;
create view user_view as select * from user;
alter view user_view as select username,money from user;

Replenish:

  • Since a view is a virtual table, there is another way to modify a view: create or replace view view creation statement; [the old view will be overwritten by the new view]

Deleting a view:

  • Syntax: drop view view name[,view name…];
  • Example:
    drop view student_class,student_info;

Data operations of the view:

  • If the view is derived from multiple base tables, the base tables cannot be modified. However, in theory, updates are allowed.

View data view:

  • Syntax: select field list from view name; [It is consistent with the query operation of the basic table. 】

Data insertion into the view:

  • When data comes from multiple base tables, the insert operation cannot be performed.
  • Syntax: insert into view name values(); [It is consistent with the insert operation of the basic table. 】
  • Note: The view structure comes from the base table, so it must accept the constraints of the base table. If a field is not allowed to be empty, but the view's insert operation does not assign a value, the insert will fail.

View data modification:

  • Syntax: update view name set field name = value where condition; [It is consistent with the modification operation of the basic table. 】

Deleting data from a view:

  • When data comes from multiple basic tables, the deletion operation cannot be performed.
  • Syntax: delete from view name where condition; [It is consistent with the deletion operation of the basic table. 】

Readers who are interested in more MySQL-related content can check out the following topics on this site: "MySQL query skills", "MySQL transaction operation skills", "MySQL stored procedure skills", "MySQL database lock related skills summary" and "MySQL common function summary"

I hope this article will be helpful to everyone's MySQL database design.

You may also be interested in:
  • Detailed explanation of creating a view (CREATE VIEW) and usage restrictions in MySQL
  • How to create a view in MySQL
  • Detailed analysis of the principles and usage of MySQL views
  • Detailed explanation of the usage and differences of MySQL views and indexes
  • A brief discussion on MySql views, triggers and stored procedures
  • Detailed explanation of MySql view trigger stored procedure
  • Detailed explanation of MySQL view management view example [add, delete, modify and query operations]
  • Detailed explanation of how to create an updateable view in MySQL
  • The difference between Update and select in MySQL for single and multiple tables, and views and temporary tables
  • mysql three tables connected to create a view
  • MySQL View Principle Analysis

<<:  Two ways to install the Linux subsystem in Windows 10 (with pictures and text)

>>:  This article will show you how to use Vue 3.0 responsive

Recommend

What you need to know about filters in Vue

Table of contents Preface What is a filter How to...

Solution to the problem that docker logs cannot be retrieved

When checking the service daily, when I went to l...

Super detailed steps to install zabbix3.0 on centos7

Preface Recently, part of the company's busin...

MySQL replication detailed explanation and simple example

MySQL replication detailed explanation and simple...

Summary of 10 must-see JavaScript interview questions (recommended)

1.This points to 1. Who calls whom? example: func...

How to hide elements on the Web and their advantages and disadvantages

Example source code: https://codepen.io/shadeed/p...

How to modify the sources.list of Ubuntu 18.04 to Alibaba or Tsinghua mirror

1. Backup source list The default source of Ubunt...

Add a copy code button code to the website code block pre tag

Referring to other more professional blog systems...

Linux CentOS6.9 installation graphic tutorial under VMware

As a technical novice, I am recording the process...

In-depth understanding of asynchronous waiting in Javascript

In this article, we’ll explore how async/await is...

A detailed introduction to Linux system configuration (service control)

Table of contents Preface 1. System Service Contr...

Detailed explanation of the difference between uniapp and vue

Table of contents 1. Simple page example 2.uni-ap...

Summary of Ubuntu backup methods (four types)

Method 1: To use respin, follow these steps: sudo...

React's transition from Class to Hooks

Table of contents ReactHooks Preface WhyHooks? Fo...