SQL or syntax

Source: Internet
Author: User

Use the or syntax in 1.mysql, or use note points in MySQL syntax. Project encountered pit, traverse the issue of reward data query Error!!!

  $sql = ' SELECT                 *             from                 ' Vvt_spread_doubleegg_exchange_award ' as P            WHERE                p. ' Act_type ' = 4 or P. ' Act_ Type ' = 5            and                p. ' user_id ' = '. $user _id            ;

The or syntax in SQL is typically used for queries of multiple conditions, the equivalent of the syntax query above: Two data sets that are queried by SQL.

  $sql = ' SELECT *  from  ' Vvt_spread_doubleegg_exchange_award ' as P WHERE  p. ' Act_type ' = 4;
$sql = ' SELECT * from ' Vvt_spread_doubleegg_exchange_award ' as P WHERE p. ' Act_type ' = 5 and P. ' user_id ' = '. $user _id;

2. To query Act_type = 4 and user_id = 11123 or Equal to P. ' Act_type ' = 5 and user_id = 11123 The data set or both sides of the condition must be added ().

  $sql = ' SELECT                 *             from                 ' Vvt_spread_doubleegg_exchange_award ' as P            WHERE                (p. ' Act_type ' = 4 or P . ' Act_type ' = 5)            and                p. ' user_id ' = '. $user _id            ;

SQL or syntax

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.