In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.