In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
I. SQL statement
SQL:Structured Query Language, a structured query language, is a language for conversations between clients and SQL servers, which is used to talk to SQL servers.
It belongs to the programming language of interpretation and execution, whose code file is usually called script and is directly executed by the interpreter.
Sample SQL script
The following SQL script contains two SQL statements
/ * enter the database * / USE EXAMPLE;SELECT * FROM student
Note:
1. Note: / * /
2. A semicolon should be added at the end of each SQL statement, with a line break in the middle.
3. Key words are recommended to be capitalized. Some servers may not be case-sensitive
II. Database operation
(if there are no special characters in the name, the ``symbol can be used)
Create a database: (CREATE)
CREATE DATABASE `aaa`
Delete database: (DROP)
DROP DATABASE `aaa`
Create a table:
The format is as follows:
CREATE TABLE `Table name` (field 1, field 2...PRIMARY KEY ('key field name'); / * the format of the field is: 'field name' type (length) whether null is allowed * /
Delete the table:
DROP TABLE `Table name`
Import (backup) and export (restore) of the database:
The exported content contains not only the structure of the table, but also the content data of the table.
The exported sql file is actually the SQL command.
Develop a database:
USE `example`
Add records (rows):
/ * Syntax format: INSERT INTO VALUSE*//* field name: `value: "" or''* / INSERT INTO `student` (`id`, `name`. `cellphont`) VALUES ('0001,' ZhangSan', '123'); (' 0002, 'LeeSi',' 345')
Query record:
Use * to indicate all columns, such as the following statement, to query the entire table:
SELECT * FROM `student`
The following statement means to view only the contents of the field `id`:
SELECT `id`FROM `student`
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
CREATE OR REPLACE PACKAGE heap_sort_pkgASTYPE num_arr_tt IS TABLE OF PLS_INTEGER INDEX BY PLS_INTEGE
© 2024 shulou.com SLNews company. All rights reserved.