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

Introduction to the function of sql statement

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

Share

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

Today, the editor is to share with you about the role of sql statements, I believe many people do not understand, in order to let you better understand the role of sql statements, so give you a summary of the following content, let's look down. I'm sure you'll get something.

Structured query language (Structured Query Language) is referred to as SQL. Structured query language is a database query and programming language for accessing data and querying, updating and managing relational database systems.

Sql statement is a language that operates on a database.

Program function

Create a database

CREATE DATABASE database-name

Delete database

Drop database dbname

Create a new table

Create table tabname (col1 type1 [not null] [primary key], col2 type2 [not null],..)

Delete new table

Drop table tabname

Add a column

Alter table tabname add column col type

Add primary key

Alter table tabname add primary key (col)

Delete primary key

Alter table tabname drop primary key (col)

Create an index

Create [unique] index idxname on tabname (col … (.)

Delete index

Drop index idxname

Create a view

Create view viewname as select statement

Delete View

Drop view viewname

This is the end of the introduction on the role of the sql statement. I hope the above content can be of certain reference value to everyone and can be put into practice. If you like this article, you might as well share it for more people to see.

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