Mysql SQL AND & OR operator

Source: Internet
Author: User

The and or operators are used to filter records based on more than one condition.

And or operators

And or can combine two OR more conditions in the WHERE substatement.

If both the first AND second conditions are true, the AND operator displays a record.

If either the first condition OR the second condition is true, the OR operator displays a record.

Original table (used in the example ):
LastName FirstName Address City
Adams John Oxford Street London
Bush George Th Avenue New York
Carter Thomas Changan Street Beijing
Carter William Xuanwumen 10 Beijing
AND operator instance

Use AND to show all people with the last name "Carter" AND the name "Thomas:

SELECT * FROM Persons WHERE FirstName='Thomas' AND LastName='Carter'
Result:
LastName FirstName Address City
Carter Thomas Changan Street Beijing
OR operator instance

Use OR to display all people with the last name "Carter" OR "Thomas:

SELECT * FROM Persons WHERE firstname='Thomas' OR lastname='Carter'
Result:
LastName FirstName Address City
Carter Thomas Changan Street Beijing
Carter William Xuanwumen 10 Beijing
Combine the and or operators

We can also combine and or (using parentheses to form a complex expression ):

SELECT * FROM Persons WHERE (FirstName='Thomas' OR FirstName='William')AND LastName='Carter'
Result:
LastName FirstName Address City
Carter Thomas Changan Street Beijing
Carter William Xuanwumen 10 Beijing

Related Article

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.