SQL statement for linux --- WHERE, where --- WHERE

Source: Internet
Author: User

SQL statement for linux --- WHERE, where --- WHERE

We do not have to capture all the information in the table every time. In many cases, we need to select materials. In our example, we may only need to capture information with a turnover of more than $1,000. To achieve this, we need to useWHEREThis command. The syntax of this command is as follows:

SELECT "column name"
FROM "table name"
WHERE "condition ";

If we want to capture information with a turnover of more than $1,000 from the following table,

Store_InformationTable

Store_Name Sales Txn_Date
Los Angeles 1500 05-Jan 1999
San Diego 250 07-Jan-1999
Los Angeles 300 08-Jan 1999
Boston 700 08-Jan 1999

Let's get,

SELECT Store_Name
FROM Store_Information
WHERE Sales> 1000;

Result:

Store_Name
Los Angeles


Linux test results:


Reprinted, please note: Xiao Liu

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.