Table of Contents
mysql.server start
Copy after login
" >
mysql.server start
Copy after login
SHOW DATABASES;
Copy after login
" >
SHOW DATABASES;
Copy after login
CREATE DATABASE 数据库名称 DEFAULT CHARSET utf8 COLLATE utf8_general_ci;
Copy after login
" >
CREATE DATABASE 数据库名称 DEFAULT CHARSET utf8 COLLATE utf8_general_ci;
Copy after login
二、数据表操作
1、创建表
2、删除表
3、清空表
4、修改表
三、表内容操作
1、增
2、删
3、改
4、查
5、深度查
Home Database Mysql Tutorial Detailed explanation of basic syntax and statements in MySQL

Detailed explanation of basic syntax and statements in MySQL

Jun 25, 2017 am 10:01 AM
mysql Basic Commonly used statement grammar

A data collection that saves a large amount of data and can be accessed efficiently through computer processing is called a database (Database, DB).

Save your name, address, phone number, email address, hobbies, family composition and other data into the database, and you can quickly obtain the information you want at any time. The computer system used to manage databases is called a database management system (DBMS).

DBMS is classified by data storage format (type of database). At present, there are five main types: Hierarchical Database (HDB), Relational Database (RDB), Object-oriented Database (Object Oriented Database, OODB), XML database (XML Database, XMLDB), key-value storage system (Key-Value Store, KVS).

DBMS is called Relational Database Management System (RDBMS). The more representative RDBMS include Oracle Database: Oracle; SQL Server: Microsoft; DB2: IBM; PostgreSQL: open source; MySQL: open source.

MySQL is one of the best RDBMS application software, and its usage rate is also up. Because of laziness, the operations in this article are only verified on MySQL5.7.

  • Zero, preparation

    • 1.Install MySQL

    • 2 , Server startup

    • 3, Client connection

    • 4, SQL statement classification

  • 1. Database operation

    • 1. Display database

    • 2. Create database

    • 3. Using database

    • 4. User management

    • 5. Authorization management

  • 2. Data table operations

    • 1. Create table

    • 2. Delete table

    • 3. Clear the table

    • 4. Modify the table

  • 3. Table content operations

    • 1, add

    • 2, delete

    • 3, change

    • 4. Check

    • 5. In-depth check

##Zero, preparation

1. Install MySQL


2. Start the server

mysql.server start
Copy after login

3.Client connection

mysql -u username -p
--退出
QUIT 或者 Control+D
Copy after login


4. SQL statement classification

  • DDL (Data Definition Language, data definition language) is used to create Or delete objects such as the database used to store data and tables in the database. DDL contains the following types of instructions.

DDL (Data Definition Language)

CREATE: Create objects such as databases and tables
DROP: Delete objects such as databases and tables
ALTER: Modify the database The structure of objects such as tables and tables

  • DML (Data Manipulation Language) is used to query or change records in tables. DML contains the following types of instructions.

DML (Data Manipulation Language)

SELECT: Query the data in the table
INSERT: Insert new data into the table
UPDATE: Update the table Data
DELETE: Delete data in the table

  • DCL (Data Control Language, data control language) is used to confirm or cancel changes to the data in the database . In addition, you can also set whether RDBMS users have permission to operate objects in the database (database tables, etc.). DCL contains the following instructions.

DCL (Data Control Language)

COMMIT: Confirm changes to data in the database
ROLLBACK: Cancel changes to data in the database
GRANT: Grant user operation permissions
REVOKE: Cancel user operation permissions

1. Database operation

1. Display database

SHOW DATABASES;
Copy after login

Default database There are the following:

mysql - user permissions related data
test - used for user test data
information_schema - MySQL itself architecture related data

2. Create database

CREATE DATABASE 数据库名称 DEFAULT CHARSET utf8 COLLATE utf8_general_ci;
Copy after login

General It's utf8. Subsequent searches and various gadgets can be used.

3. Using the database

--使用数据库
USE 数据库名称;
--显示当前使用的数据库中所有表
SHOW TABLES;
Copy after login

4. User management

--创建用户
create user '用户名'@'IP地址' identified by '密码';
--删除用户
drop user '用户名'@'IP地址';
--修改用户
rename user '用户名'@'IP地址'; to '新用户名'@'IP地址';
--修改密码
set password for '用户名'@'IP地址' = Password('新密码');
Copy after login

User permissions-related data is stored in the user table of the mysql database, but it is not recommended to operate it directly.

5. Authorization management

-- 查看权限
show grants for '用户'@'IP地址';
-- 授权
grant  权限 on 数据库.表 to   '用户'@'IP地址' ;
-- 取消权限
revoke 权限 on 数据库.表 from '用户'@'IP地址';
Copy after login

Frequently used permissions:

all privileges - all privileges except grant
select - check permissions only
select, insert - check And insert permission

Use * to match database name and table name:

test.* -test database all tables
*.* -all database all tables

Use % to match IP address

--举个例子
grant all privileges on *.*TO '用户名'@'%';
Copy after login

二、数据表操作

1、创建表

create table 表名(
    列名  类型  NULL,
    列名  类型  NOT NULL
)ENGINE=InnoDB DEFAULT CHARSET=utf8
Copy after login

基本数据类型
MySQL的数据类型大致分为:数字型、字符型、日期型。

  • INT型: 用来指定存储整数的列的数据类型(数字型),不能存储小数。

  • CHAR型: 用来指定存储字符串的列的数据类型(字符型)。可以像 CHAR(200) 这样,在括号中指定该列可以存储的字符串的长度(最大长度)。字符串超出最大长度的部分是无法输入到该列中的。当列中存储的字符串长度达不到最大长度的时候,使用半角空格进行补足。

  • VARCHAR型: 也可以通过括号内的数字来指定字符串的最大长度(字符型)。但该类型的列是以可变长字符串的形式来保存字符串。可变长字符串即使字符数未达到最大长度,也不会用半角空格补足。

  • DATE型: 用来指定存储日期(年月日)的列的数据类型(日期型)。

更多数据类型

默认值
创建列时可以指定默认。

create table tb1(
nid int not null default 2,
num int not null
)
Copy after login

自增
如果为某列设置自增列,插入数据时无需设置此列,默认将自增(表中只能有一个自增列)。

create table tb1(
nid int not null auto_increment primary key,
num int null
)

create table tb1(
nid int not null auto_increment,
num int null,
index(nid)
)
Copy after login

注意:
1、对于自增列,必须是索引(含主键)。
2、对于自增可以设置步长和起始值
show session variables like 'auto_inc%';
set session auto_increment_increment=2;
set session auto_increment_offset=10;

show global  variables like 'auto_inc%';
set global auto_increment_increment=2;
set global auto_increment_offset=10;

主键
一种特殊的唯一索引,不允许有空值,如果主键使用单个列,则它的值必须唯一,如果是多列,则其组合必须唯一。

create table tb1(
nid int not null auto_increment primary key,
num int null
)

create table tb1(
nid int not null,
num int not null,
primary key(nid,num)
)
Copy after login

外键
一个特殊的索引,只能是指定内容

create table color(
nid int not null primary key,
name char(16) not null
)

create table fruit(
nid int not null primary key,
smt char(32) null ,
color_id int not null,
constraint fk_cc foreign key (color_id) references color(nid)
)
Copy after login

2、删除表

drop table 表名
Copy after login

3、清空表

delete from 表名
truncate table 表名
Copy after login

4、修改表

--添加列
alter table 表名 add column 列名 类型
--删除列
alter table 表名 drop column 列名

--修改列
-- 类型
alter table 表名 modify column 列名 类型; 
-- 列名,类型
alter table 表名 change 原列名 新列名 类型;
  
--添加主键
alter table 表名 add primary key(列名);
--删除主键
alter table 表名 drop primary key;
alter table 表名  modify  列名 int, drop primary key;
  
--添加外键
alter table 从表 add constraint 外键名称(形如:FK_从表_主表) foreign key 从表(外键字段) references 主表(主键字段);
--删除外键
alter table 表名 drop foreign key 外键名称
  
--修改默认值
ALTER TABLE testalter_tbl ALTER i SET DEFAULT 1000;
--删除默认值
ALTER TABLE testalter_tbl ALTER i DROP DEFAULT;
Copy after login

三、表内容操作

1、增

insert into 表 (列名,列名...) values (值,DEFAULT,值...)
insert into 表 (列名,列名...) values (值,值,值...),(值,值,值...)

insert into 表A (列名,列名...) select (列名,列名...) from 表B
Copy after login

2、删

--保留数据表,删除全部行
delete from 表
delete from 表 where id=1 and name='dyan';
truncate 表
Copy after login

3、改

update 表 set name = 'dyan' where id>1;
Copy after login

4、查

select * from 表
select * from 表 where id > 1
select nid,name,gender as 新表名 from 表 where id > 1

子查询的运算符 =,<>,>,>=,<,<=
is null, not, and, or,
Copy after login

5、深度查

1)条件
    select * from 表 where id > 1 and name != 'dyan' and num = 12;
 
    select * from 表 where id between 5 and 16;
 
    select * from 表 where id in (11,22,33);
    select * from 表 where id not in (11,22,33);
    select * from 表 where id in (select nid from 表);
    
2)聚合
    COUNT:计算表中的记录数(行数)
    SUM:计算表中数值列中数据的合计值
    AVG:计算表中数值列中数据的平均值
    MAX:求出表中任意列中数据的最大值
    MIN:求出表中任意列中数据的最小值
    
    --后者会得到NULL之外的数据行数
    select count(*),count(<列名>) from 表名;
 
3)通配符
    select * from 表 where name like 'ale%'  - ale开头的所有(多个字符串)
    select * from 表 where name like 'ale_'  - ale开头的所有(一个字符)
 
4)限制
    select * from 表 limit 5;            - 前5行
    select * from 表 limit 4,5;          - 从第4行开始的5行
    select * from 表 limit 5 offset 4;   - 从第4行开始的5行
 
5)分组
    select num from 表 group by num
    select num,nid from 表 group by num,nid
    select num,nid from 表  where nid > 10 group by num,nid order nid desc
    select num,nid,count(*),sum(score),max(score),min(score) from 表 group by num,nid
 
    select num from 表 group by num having max(id) > 10
 
    特别的:group by 必须在where之后,order by之前
 
6)连表
    无对应关系则不显示
    select A.num, A.name, B.name
    from A,B
    Where A.nid = B.nid
 
    无对应关系则不显示
    select A.num, A.name, B.name
    from A inner join B
    on A.nid = B.nid
 
    A表所有显示,如果B中无对应关系,则值为null
    select A.num, A.name, B.name
    from A left join B
    on A.nid = B.nid
 
    B表所有显示,如果B中无对应关系,则值为null
    select A.num, A.name, B.name
    from A right join B
    on A.nid = B.nid
    
7)排序
    select * from 表 order by 列                  - 根据 “列” 从小到大排列,默认asc升序
    select * from 表 order by 列 desc             - 根据 “列” 从大到小排列
    select * from 表 order by 列1 desc,列2 asc    - 根据 “列1” 从大到小排列,如果相同则按列2从小到大排序
    select 列名1,count(*) from 表 group by 列名1 order by count(*)
 
8)组合
    组合,自动处理重合
    select nickname
    from A
    union
    select name
    from B
 
    组合,不处理重合
    select nickname
    from A
    union all
    select name
    from B
Copy after login

The above is the detailed content of Detailed explanation of basic syntax and statements in MySQL. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP's big data structure processing skills PHP's big data structure processing skills May 08, 2024 am 10:24 AM

Big data structure processing skills: Chunking: Break down the data set and process it in chunks to reduce memory consumption. Generator: Generate data items one by one without loading the entire data set, suitable for unlimited data sets. Streaming: Read files or query results line by line, suitable for large files or remote data. External storage: For very large data sets, store the data in a database or NoSQL.

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the &quot;MySQL Native Password&quot; plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

The difference between oracle database and mysql The difference between oracle database and mysql May 10, 2024 am 01:54 AM

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.

See all articles