The difference between where and on in mysql

下次还敢
Release: 2024-05-01 20:40:02
Original
969 people have browsed it

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

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

  • is used in SELECT, UPDATE, and DELETE statements
  • Used to filter returned records or modified/deleted records
  • Conditions are placed in the WHERE clause to specify the conditions to be met
  • Can only be used for a single table, cannot be used to join multiple tables

ON keyword

  • is used in the JOIN statement
  • is used to specify Connection conditions when connecting multiple tables
  • Conditions are placed in the ON clause to specify the basis for connecting records between two tables
  • Can be used to connect multiple tables through comparison Column values of different tables to establish relationships

Summary

##Features WHERE ON Usage Filter records Connect table Statement SELECT, UPDATE, DELETE JOIN Clause WHERE ON Range Single table Multiple tables ##Purpose
Filter data Establish table relationship
Example

Filter records:

SELECT * FROM employees WHERE salary > 50000;
Copy after login

Join table:

SELECT * FROM employees AS e JOIN departments AS d ON e.department_id = d.id;
Copy after login
I hope this information will be helpful for you to understand the difference between WHERE and ON in MySQL.

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!