SQL Statement Basics

Source: Internet
Author: User

It's all written in MySQL.

1. Enquiry

The following sentence can handle most simple SQL queries:

SELECT field from table WHERE field = value ORDER by field 1 ASC, field 2 DESC LIMIT starting point, number of data bars

Total number of query data:

SELECT COUNT (*) as C from table

2. Insert

INSERT into table (field 1, Field 2 ...) Values (value 1, value 2 ...)

3. Update

UPDATE SET field 1= value 1, field 2= value 2 WHERE field = value

4. Delete

DELETE from table WHERE field = value

It is not difficult to see that the most difficult is the query statement, and the database is the most of the operation is actually a query, a variety of conditions overlay can even write a Timbers K SQL statement.

SQL Statement Basics

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.