Usage: 1. Join is used to obtain data that exists in different tables based on the relationship between columns in two or more tables. It has the function of joining. The syntax is "Table 1 join Table 2 "; 2. On is used to add constraints between two connected tables. The syntax is "table 1 join table 2 on condition".
The operating environment of this tutorial: windows10 system, mysql8.0.22 version, Dell G3 computer.
#What is the usage of join and on in mysql
# The role of join
is that when two or more tables are related, join needs to be used to connect these related tables to process or analyze data:
Then use the second row
oftable stu to splice with each row data in table class, and so on
table stu is 3 rows, the table class is 2 rows, so according to the above rules, a new table with 3*2 = 6 rows
on usage: add constraints
For example: stu join class on classid = class.id
, after on is the condition we added. We want the data in the classid column to be equal to the data in the id column. Note here that the table column names after the join are repeated, so ON We need to add the original table name to the subsequent conditional statement. For example, here:classid = class.id, since the id has two columns, here we want to table the id in the class, so it is class.id.
So: After executing: stu join class on classid = class.id
, the table becomes:
Tips:
, the following on can be replaced with where; is verified in the database:
mysql -u root -p # 登录数据库,输入密码 CREATE DATABASE new; # 创建数据库new use new; # 使用这个数据库 CREATE TABLE stu(id int primary key,name char(10),classid int)default charset = utf8mb4; # 创建表stu INSERT INTO stu (id,name,classid)VALUES(1,'A',1),(2,'B',1),(3,"C",2); # 插入数据 SELET * FROM stu;#########
CREATE TABLE class(id int primary key,name char(10),teacher char(10))default charset = utf8mb4; # 创建表class INSERT INTO class (id,name,teacher)VALUES(1,'实验班',"小红"),(2,'普通班',"小蓝"); # 插入数据 SELECT * FROM class;#########
SELECT * FROM stu join class; # 用join连接两个表## #######
SELECT * FROM stu join class ON classid = class.id; # 用on来添加条件############### Recommended learning: ###mysql video tutorial######
The above is the detailed content of What is the usage of join and on in mysql. For more information, please follow other related articles on the PHP Chinese website!