SQL statement data operations

Source: Internet
Author: User

I. insert statements

Insert is used to input data into the table. The syntax structure is as follows.

Insert into table name VALUES (value 1, value 2,...) We can also specify the columns to INSERT data:

Insert into table_name (column 1, column 2,...) VALUES (value 1, value 2,...) Example:
Copy codeThe Code is as follows:
Insert into country values ('u.s ')

Ii. update statement

The update statement is used to update data in a table. Its syntax structure is as follows.

UPDATE table name SET column name = new value WHERE column name = A value example:
Copy codeThe Code is as follows:
Update country set countryname = 'China' where countryid = 4

Iii. delete statement

The delete statement is used to delete data in a table. Its syntax structure is as follows.

Example of delete from table name WHERE column name = value:
Copy codeThe Code is as follows:
Delete from country where countryid = 4

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.