Detailed explanation of views in MySQL

Detailed explanation of views in MySQL

view:

Views in MySQL have many similarities with tables. Views are also composed of several fields and several records. Views can also be used as data sources for select statements.

What is saved in the view is just a select statement, which saves the view definition but not the actual data. The source data in the view all comes from the database table. The database table is called the basic table or base table, and the view is called the virtual table.

1. Create a view

The syntax for creating a view is as follows.

create view view name [(view field list)]
as select statement

example:

create view t (id,name,age,sex) as
select id,name,age,sex from teacher;

View the view structure (view the view information, similar to viewing the table information)

desc t;

2. Delete the view

If a view is no longer used, you can use the drop view statement to delete the view. The syntax format is as follows.

drop view view name

3. The role of view

· Make operations simple · Avoid data redundancy · Enhance data security · Improve the logical independence of data

The above is the introduction of views in Mysql by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Detailed explanation of the use of views in MySQL notes
  • Sharing tips on using views in MySQL and multi-table INNER JOIN
  • Detailed explanation of the usage and differences between indexes and views in MySQL
  • Example code for implementing Oracle materialized view using mysql trigger
  • Application analysis based on mysql transactions, views, stored procedures, and triggers
  • Summary of MySQL view principles and usage examples
  • Mysql matters, views, functions, trigger commands (detailed explanation)
  • MySQL view principles and basic operation examples
  • MySQL view introduction and basic operation tutorial
  • Analysis of mysql view functions and usage examples

<<:  Ajax jquery realizes the refresh effect of a div on the page

>>:  Several common ways to deploy Tomcat projects [tested]

Blog    

Recommend

Implementing a simple Christmas game with JavaScript

Table of contents Preface Achieve results Code CS...

A brief discussion on the calculation method of key_len in mysql explain

The MySQL explain command can analyze the perform...

Mysql uses insert to insert multiple records to add data in batches

If you want to insert 5 records into table1, the ...

JavaScript to achieve a simple countdown effect

This article example shares the specific code of ...

Solution to forgetting mysql password under linux

The problem is as follows: I entered the command ...

Examples of correct use of interface and type methods in TypeScript

Table of contents Preface interface type Appendix...

How to use ES6 class inheritance to achieve a gorgeous ball effect

Table of contents introduce Implementation steps ...

MySQL 8.0.18 stable version released! Hash Join is here as expected

MySQL 8.0.18 stable version (GA) was officially r...

Implementation of Element-ui Layout (Row and Col components)

Table of contents Basic instructions and usage An...

Implementation methods of common CSS3 animations

1. What is CSS Animations is a proposed module fo...

Solution to the root password login problem in MySQL 5.7

After I found that the previous article solved th...

Solution to the problem that order by is not effective in MySQL subquery

By chance, I discovered that a SQL statement prod...

Vue realizes click flip effect

Use vue to simply implement a click flip effect f...

CSS syntax for table borders

<br /> CSS syntax for table borders The spec...