A brief discussion on using Cartesian product principle to query multiple tables in MySQL

A brief discussion on using Cartesian product principle to query multiple tables in MySQL

MySQL multi-table query (Cartesian product principle)

  1. First determine which tables the data will use.
  2. Convert multiple tables into one table through Cartesian product.
  3. Then remove the illogical data (remove it according to the relationship between the two tables).
  4. Finally, just add conditions as if it were a virtual table.

Note: It is best to use table aliases to distinguish column names.

Cartesian Product

Demo:

Left, right, inner, outer joins

Inner join:

Important: All matching records are returned.

select * from a,b where ax = bx ////Inner join

l There are two types of outer joins: left join and right join.

Key points: All matching records are returned plus one record for each row where the primary table foreign key value is null. All columns of the auxiliary table are null values.

select * from a left join b on ax=bx order by ax //Left outer join or left join select * from a right join b on ax=bx order by ax //Right outer join or right join

Select clause order

Clauses illustrate Is it necessary to use
select The column or expression to return yes
form The table from which to retrieve data Only used when selecting data from a table
where Row-level filtering no
group by Group Description Only used when computing aggregates by group
having Group level filtering no
order by Output sort order no
limit The number of rows to retrieve no

This concludes this article on how to use the Cartesian product principle in MySQL to perform multi-table queries. For more information about MySQL multi-table queries, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • MySql multi-table query transaction and DCL
  • Detailed explanation of four types of MySQL connections and multi-table queries
  • Specific example of MySQL multi-table query
  • MySQL database advanced query and multi-table query
  • MySQL multi-table query detailed explanation
  • MySQL multi-table query detailed explanation
  • MySQL left-join multi-table query where condition writing example
  • Analyzing the implementation of Mysql multi-table query
  • MySQL multi-table query implementation analysis
  • Detailed classification of MySQL multi-table queries

<<:  Detailed explanation of Linux rpm and yum commands and usage

>>:  Detailed tutorial on installing MariaDB on CentOS 8

Recommend

centos 7 modify sshd | prohibit root login and sshd port script definition

1. Create a new user wwweee000 [root@localhost ~]...

Specific use of Bootstrap5 breakpoints and containers

Table of contents 1. Bootstrap5 breakpoints 1.1 M...

CSS new feature contain controls page redrawing and rearrangement issues

Before introducing the new CSS property contain, ...

js tag syntax usage details

Table of contents 1. Introduction to label statem...

Implementation of Nginx domain name forwarding

Introduction to Nginx Nginx ("engine x"...

Docker container from entry to obsession (recommended)

1. What is Docker? Everyone knows about virtual m...

Tomcat server security settings method

Tomcat is an HTTP server that is the official ref...

Several things to note when making a web page

--Homepage backup 1.txt text 2. Scan the image 3. ...

How to install Docker CE on Ubuntu 18.04 (Community Edition)

Uninstall old versions If you have installed an o...

HTML optimization speeds up web pages

Obvious HTML, hidden "public script" Th...