How to create a view on multiple tables in MySQL

How to create a view on multiple tables in MySQL

In MySQL, create a view on two or more base tables

Create the stu_class view on the student table and stu_info table to query the s_id number, name, and class

First, create the stu_info table and insert data into it

View the data in the table

Create the stu_class view

View View

It can be seen that the created view contains id, name and class fields

Among them, the id field corresponds to the s_id field in the student table, the name field corresponds to the name field in the student table, and the class field corresponds to the class field in the stu_info table.

You may also be interested in:
  • Detailed explanation of creating a view (CREATE VIEW) and usage restrictions in MySQL
  • 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 ensuring the consistency of MySQL views (with check option)
  • Mysql database advanced usage of views, transactions, indexes, self-connections, user management example analysis
  • Django framework uses mysql view operation example
  • How to create a view in MySQL

<<:  Detailed explanation of the installation and use of Linux scheduled tasks crontabs

>>:  How to import, register and use components in batches in Vue

Recommend

Pure js to achieve typewriter effect

This article example shares the specific code of ...

The difference between KEY, PRIMARY KEY, UNIQUE KEY, and INDEX in MySQL

The problem raised in the title can be broken dow...

CentOS7 installation zabbix 4.0 tutorial (illustration and text)

Disable SeLinux setenforce 0 Permanently closed: ...

Java imports data from excel into mysql

Sometimes in our actual work, we need to import d...

HTML hyperlink style (four different states) setting example

Copy code The code is as follows: <style type=...

How to quickly build your own server detailed tutorial (Java environment)

1. Purchase of Server 1. I chose Alibaba Cloud...

A Brief Discussion on the Navigation Window in Iframe Web Pages

A Brief Discussion on the Navigation Window in If...

Implementation of element shuttle frame performance optimization

Table of contents background Solution New Questio...

How to elegantly implement the mobile login and registration module in vue3

Table of contents Preface Input box component lay...

Vue3 Vue CLI multi-environment configuration

Table of contents 1. Introduction 2. Switching 1....

Detailed explanation of CSS3 flex box automatic filling writing

This article mainly introduces the detailed expla...

How to deal with time zone issues in Docker

background When I was using Docker these two days...

How to encapsulate timer components in Vue3

background When you open the product details on s...