#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
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:
|
>>: Linux tac command implementation example
View Database show databases; Create a database c...
One of the most commonly used and discussed data ...
mistake The following error occurs when connectin...
Preface This article is just a simple record of m...
Recently, the project switched the environment an...
margin:auto; + position: absolute; up, down, left...
Table of contents The essence of QR code login Un...
The logs in MySQL include: error log, binary log,...
The interviewer will sometimes ask you, tell me h...
1. Introduction to mysqldump mysqldump is a logic...
Table of contents 1. Register an account on Baidu...
Since my development environment is to install Ce...
Table of contents Preliminary preparation Impleme...
This article uses examples to describe advanced u...
Today I downloaded mysql-5.7.18-winx64.zip from t...