In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-09-22 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.
The market share of Chrome browser on the desktop has exceeded 70%, and users are complaining about
The world's first 2nm mobile chip: Samsung Exynos 2600 is ready for mass production.According to a r
A US federal judge has ruled that Google can keep its Chrome browser, but it will be prohibited from
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
About us Contact us Product review car news thenatureplanet
More Form oMedia: AutoTimes. Bestcoffee. SL News. Jarebook. Coffee Hunters. Sundaily. Modezone. NNB. Coffee. Game News. FrontStreet. GGAMEN
© 2024 shulou.com SLNews company. All rights reserved.