The difference between WHERE and ON in MySQL is: Usage: WHERE is used to filter records, while ON is used to join tables. Statements: WHERE is used in SELECT, UPDATE, DELETE statements, while ON is used in JOIN statements. Clause: WHERE condition is in WHERE clause and ON condition is in ON clause. Scope: WHERE can only be used for a single table, while ON can be used to join multiple tables. Purpose: WHERE is used to filter data, while ON is used to establish relationships between tables.
The difference between WHERE and ON in MySQL
In MySQL, WHERE and ON are both used for filtering Keywords for data tables, but they differ in usage and purpose:
WHERE keyword
ON keyword
Summary
WHERE | ON | |
---|---|---|
Filter records | Connect table | |
SELECT, UPDATE, DELETE | JOIN | |
WHERE | ON | |
Single table | Multiple tables | |
Filter data | Establish table relationship |
Filter records:
SELECT * FROM employees WHERE salary > 50000;
SELECT * FROM employees AS e JOIN departments AS d ON e.department_id = d.id;
The above is the detailed content of The difference between where and on in mysql. For more information, please follow other related articles on the PHP Chinese website!