MySQL learning footprint Record 04 -- data filtering -- WHERE_MySQL

Source: Internet
Author: User
MySQL learning footprint Record 04 -- data filtering -- WHERE bitsCN.com

MySQL learning footprint Record 04 -- data filtering -- WHERE

1. use the WHERE clause

 eg:  mysql> SELECT prod_name,prod_price FROM products WHERE prod_price=2.50;+---------------+------------+| prod_name     | prod_price |+---------------+------------+| Carrots       |       2.50 || TNT (1 stick) |       2.50 |+---------------+------------+

TIPs:

* When both order by and WHERE clauses are used, order by is placed after WHERE; otherwise, an error occurs.

2. WHERE clause operators

Equal to: =

Not equal to: <> OR! =

Less than: <

Less than or equal to: <=

Greater than:>

Greater than or equal to:> =

BETWEEN the specified two values,

3. detect a single value

Eg: mysql> SELECT prod_name, prod_price FROM products WHERE prod_name = 'fuses '; + ----------------- + ------------- + # single quotes are required for comparison with strings. | prod_name | prod_price | + ----------------- + ------------- + | Fuses | 3.42 | + ----------------- + ----------------

4. smaller than the limit

  eg:      mysql> SELECT prod_name,prod_price FROM products WHERE prod_price<10;+---------------+------------+| prod_name     | prod_price |+---------------+------------+| .5 ton anvil  |       5.99 || 1 ton anvil   |       9.99 || Carrots       |       2.50 || Fuses         |       3.42 || Oil can       |       8.99 || Sling         |       4.49 || TNT (1 stick) |       2.50 |+---------------+------------+7 rows in set (0.00 sec)

5. less than or equal to the limit

  eg:    mysql> SELECT prod_name,prod_price FROM products WHERE prod_price<=10;+----------------+------------+| prod_name      | prod_price |+----------------+------------+| .5 ton anvil   |       5.99 || 1 ton anvil    |       9.99 || Bird seed      |      10.00 || Carrots        |       2.50 || Fuses          |       3.42 || Oil can        |       8.99 || Sling          |       4.49 || TNT (1 stick)  |       2.50 || TNT (5 sticks) |      10.00 |+----------------+------------+9 rows in set (0.00 sec)

6. mismatch check

Eg: mysql> SELECT vend_id, prod_name FROM products WHERE vend_id <> 1003; # equivalent to SELECT vend_id, prod_name FROM products # WHERE vend_id! = 1003; + --------- + ------------ + | vend_id | prod_name | + --------- + -------------- + | 1001 |. 5 ton andevil | 1001 | 1 ton andevil | 1001 | 2 ton andevil | 1002 | Fuses | 1005 | JetPack 1000 | 1005 | JetPack 2000 | 1002 | Oil can | + --------- + -------------- + 7 rows in set (0.00 sec)

7. check the range value ()

Eg: mysql> SELECT prod_name, prod_price FROM products WHERE prod_price BETWEEN 5.99 AND 10.00; + ---------------- + ------------ + # note, values on both sides of BETWEEN are closed intervals | prod_name | prod_price | + ---------------- + ---------- + |. 5 ton andevil | 5.99 | 1 ton andevil | 9.99 | Bird seed | 10.00 | Oil can | 8.99 | TNT (5 sticks) | 10.00 | + ---------------- + ------------ + 5 rows in set (0.00 sec)

8. NULL check (is null)

* NULL: no value, which is not equal to 0. it is an empty string or only contains NULL values.

Eg: list tables that contain null values: customers; mysql> SELECT * FROM customers; + --------- + response + ----------- + ---------- + response + | cust_id | cust_name | cust_address | response | cust_state | response | cust_contact | cust_email | + --------- + ---------------- + --------------------- + ----------- + ------------ + ---------- + -------------- + ------------------- + | 10001 | Coyote Inc. | 200 Maple Lane | Detroit | MI | 44444 | USA | Y Lee | ylee@coyote.com | 10002 | Mouse House | 333 Fromage Lane | Columbus | OH | 43333 | USA | Jerry Mouse | NULL | 10003 | Wascals | 1 Sunny Place | Muncie | IN | 42222 | USA | Jim Jones | rabbit@wascally.com | 10004 | Yosemite Place | 829 Riverside Drive | Phoenix | AZ | 88888 | USA | Y Sam | sam@yosemite.com | 10005 | E Fudd | 4545 53rd Street | Chicago | IL | 54545 | USA | E Fudd | NULL | + --------- + ---------------- + ------------------- + ----------- + ------------ + ---------- + -------------- + --------------------- + 5 rows in set (0.00 sec) mysql> SELECT cust_id from mers where cust_email is null; + --------- + | cust_id | + --------- + | 10002 | 10005 | + --------- + 2 rows in set (0.00 sec)


BitsCN.com

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.