Detailed explanation of MySQL sql99 syntax inner join and non-equivalent join

Detailed explanation of MySQL sql99 syntax inner join and non-equivalent join

#Case: Query employee salary levels

SELECT
  salary,grade_level
FROM
  employees
JOIN
  job_grades g
ON
  e.`salary` BETWEEN g.`lowest_sal` AND g.`lowest_sal`;

#Example: Query the number of each salary level and sort by level in descending order

SELECT
  COUNT(*),grade_level
FROM
  job_grades j
JOIN
  employees
ON
  e.`salary` BETWEEN j.`lowest_sal` AND j.`highest_sal`
GROUP BY
  grade_level DESC;

Content extension :

grammar

select query list

from Table 1 Alias ​​[Connection Type]

jion Table 2 Alias

on connection condition

[where filter conditions]

[group by grouping]

[having filter conditions]

[order by sort list]

Case 1: Query employee name, department name

SELECT last_name,department_name
FROM employees
INNER JOIN departments d
ON e.department_id=d.department_id;

Case 2: Query the employee names and job titles containing "e" (add filter)

SELECT last_name,job_title
FROM employees
INNER JOIN jobs j
ON e.job_id=j.job_id
WHERE e.last_name LIKE '%e%';

The above is all the knowledge points introduced this time.

You may also be interested in:
  • Detailed explanation of MySQL database--multi-table query--inner join, outer join, subquery, correlated subquery
  • mysql join query (left join, right join, inner join)
  • MYSQL left join right join and inner join detailed explanation and difference
  • mysql left join, right join and inner join
  • Examples of using MySQL left and right inner joins
  • Briefly talk about mysql left join inner join
  • The difference between mysql outer join and inner join query

<<:  Vue custom instructions to achieve pop-up window drag four-side stretching and diagonal stretching effect

>>:  Linux tac command implementation example

Recommend

Basic knowledge of MySQL learning notes

View Database show databases; Create a database c...

How to implement a binary search tree using JavaScript

One of the most commonly used and discussed data ...

Navicat connects to MySQL8.0.11 and an error 2059 occurs

mistake The following error occurs when connectin...

About Tomcat combined with Atomikos to implement JTA

Recently, the project switched the environment an...

A brief discussion on the principle of js QR code scanning login

Table of contents The essence of QR code login Un...

Analysis of MySQL general query log and slow query log

The logs in MySQL include: error log, binary log,...

Nodejs-cluster module knowledge points summary and example usage

The interviewer will sometimes ask you, tell me h...

Detailed explanation of the use of MySQL mysqldump

1. Introduction to mysqldump mysqldump is a logic...

How to use Baidu Map API in vue project

Table of contents 1. Register an account on Baidu...

How to set a fixed IP address in CentOS7 virtual machine

Since my development environment is to install Ce...

Steps for importing tens of millions of data into MySQL using .Net Core

Table of contents Preliminary preparation Impleme...