SQL Basic Grooming

Source: Internet
Author: User

I. Basic usage

Inquire:

SELECT * FROM table name (where column name = ' &ABC ');

eg.

SELECT * from EMP;

Increase:

When inserting multiple values, use values:

Insert into table name values (value 1, value 2, ...);

Insert into table name (column 1, column 2, ...) VALUES (value 1, value 2, ...);

eg.

Insert into table (name) VALUES (' abc ');

When inserting null values, use value:

eg.

Insert into table value (NULL);

By deleting:

Delete from table name where condition;

Note: 1. Delete the data only, do not delete the table itself, to delete the entire table, use the drop table;2.where conditional clause, if none, will delete all the data in the table.

Change:

Update table name set column name = expression where condition;

eg. put the students table, the YM of this person's gender into female

Update students set sex= ' female ' where name= "ym";

Two. SQL statement Classification

DML Statements ( Data manipulation Statements ) [INSERT, UPDATE, delete]

DDL Statements ( data definition Language ) [CREATE table drop table ...]

DQL Statement ( data query Statement ) [select]

DTL Statement ( Data Control Language ) commit rollback

SQL Basic Grooming

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.