DDL, DML, DCL

Source: Internet
Author: User

DDL (data definition Language): Database definition language < NOTE keyword table>

  1, create table table_name ()

  2, alert table table_name

(1). Add columns
An example of the complete definition of the ALTER table tb_name add column: Alter TABLE S_stu Add (sname varchar2 (), sage number);

(2). Delete a column
Alter table tb_name drop column col_name;

(3). Modifying column properties (data types and constraints)
An example of the complete definition of the ALTER table tb_name modify column: ALTER TABLE S_STU modify sname varchar (10);
  3, drop table tb_name [cascade constraint];

  4, truncate table tb_name

DML (Data Manipulation Language): Database manipulation language

  1, INSERT INTO table_name (...) VALUES (...)

 2,update table_name SET column_name =, where,,,

  3,Delete from table_name where,,,

DCL (Data Control Language): Controls statements

Grant Authorization
REVOKE Cancel Authorization

DDL, DML, DCL

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.