Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

04 SQL introduction and data definition language

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

About 1.SQL SQL is the acronym of Structured Query Language (structured query language). SQL is a database language. Oracle uses this language to store and retrieve information. Through SQL, the communication table with the Oracle server is the main database object for storing data.

SQL supports the following categories of commands

Data definition language (DDL): CREATE ALTER DROP

Data manipulation language (DML): INSERT DELETE UPDATE SELECT

Transaction Control language (TCL): COMMIT ROLLBACK

Data Control language (DCL): GRANT REVOKE

two。 Data definition language

The data definition language is used to change the database structure, including creating, changing, and deleting database objects

The data definition language commands for manipulating table structures are:

CREATE TABLE create table

ALTER TABLE modify table

It is efficient for TRUNCATE TABLE to delete the data log from the table only once.

DROP TABLE delete table

2.1 create table create table emp (emp_id NUMBER (10) not null,-- employee number emp_name VARCHAR2 (100),-- employee name emp_sex VARCHAR2 (5),-- employee gender emp_birthday DATE,-- birthday emp_salary DATE,-- salary primary key (emp_id)-- Primary key) 2.2 modify table alter table table name add constraint field primary key (field) -- set primary key alter table USER_INFO modify USER_NAME VARCHAR2 (500);-- modify field length 2.3Delete table records

TRUNCATE TABLE table name

TRUNCATE TABLE USER_INFO

2.4 Delete the table

DROP TABLE table name

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report