zoukankan      html  css  js  c++  java
  • A2-02-03.DML- Filter Rows Using MySQL WHERE

    转载自:http://www.mysqltutorial.org/mysql-where/

    Filter Rows Using MySQL WHERE

     

    Summary: you will learn how to use MySQL WHERE clause in the SELECT statement to filter rows in the result set.

    Introduction to MySQL WHERE clause

    If you use the SELECT statement to query the data from tables without the WHERE clause, you will get all rows in the tables that may be not necessary. The tables accumulate data from business transactions all times. It does not make sense to get all rows from a table especially for big tables like employees, sales orders, purchase orders, production orders, etc., because we often want to analyze a set of data at a time e.g, sales of this quarter, sales of this year compared to last year, etc.

    The WHERE clause allows you to specify exact rows to select based on a particular filtering expression or condition.

    You will also learn how to use LIMIT clause to constrain the number of rows returned by the SELECTstatement.

    MySQL WHERE clause examples

    We will continue with the employees table data in the sample database as shown in the picture below.

    MySQL employees table
    Suppose, we just want to get sales rep employees from the employees table, we use the following query:

    Try It Out

    MySQL WHERE clause examples

    Even though the WHERE clause appears at the end of the statement, MySQL evaluates the expression in the WHERE clause first to select the matching rows. It chooses the rows that have job title as Sales Rep

    MySQL then selects the columns from the selection list in the SELECT clause. The highlighted area contains the columns and rows in the final result set.

    MySQL WHERE with equal operator

    You can form a simple condition like the query above, or a very complex one that combines multiple expressions with logical operators such as AND, OR, etc. For example, to find all sales rep in the office code 1, you use the following query:

    Try It Out

    MySQL WHERE with AND operator

    The following table lists the comparison operators that you can use to form filtering expressions in the WHERE clause.

    OperatorDescription
    = Equal to. You can use it with almost any data types.
    <> or != Not equal to.
    < Less than. You typically use it with numeric and date/time data types.
    > Greater than.
    <= Less than or equal to
    >= Greater than or equal to

    The following query uses the not equal to operator to get all employees who are not the sales rep:

    MySQL WHERE with not equal to operator

    The following query gets every employee that have office code is greater than 5:

    Try It Out

    MySQL WHERE with greater than operator

    What about employee with office code less than or equal 4 (<=4):

    Try It Out

    MySQL WHERE clause with less than or equal

    More on MySQL WHERE clause…

    There are also some useful operators that you can use in the WHERE clause to form complex conditions such as:

    • BETWEEN selects values within a range of values.
    • LIKE matches value based on pattern matching.
    • IN specifies if the value matches any value in a list.
    • IS NULL checks if the value is NULL.

    The WHERE clause is used not only with the SELECT statement but also other SQL statements to filter rows such as DELETE and UPDATE.

    In this tutorial, we’ve shown you how to use MySQL WHERE clause to filter rows based on conditions.

  • 相关阅读:
    一失足千古恨在 WSL 中使用了 md 创建文件夹 (2020-04-26)
    开源中国 ThinkPHP 领奖
    投资投机脑图(2019-12-12)
    什么? 1XIN = 21BTC
    笔记:投机和投资 F4NNIU
    如何设置单个 Git 仓库的代理从而提高更新速度
    FastAdmin 使用 phpmail 出现 spl_autoload_register 错误
    plsql 引用型变量
    oracle 存储函数
    oracle存储过程(带参数的存储过程)
  • 原文地址:https://www.cnblogs.com/zhuntidaoren/p/9511466.html
Copyright © 2011-2022 走看看