当前位置:网站首页>Mysql database (IV) transactions and functions
Mysql database (IV) transactions and functions
2022-07-06 15:10:00 【Hand pluckable Xinchen】
1, Business
Concept : Is to put a group SQL Statements are executed in the same batch , If one SQL Statement error , Then all of the SQL Will be cancelled .
2, The principle of affairs
3, The way to implement a transaction
4, Steps to implement a transaction
-- Operation of transaction
-- 1, Turn off auto submit
SET autocommit = 0;
-- 2, Open transaction
START TRANSACTION;
-- 3, Perform a group of SQL sentence
update bank set bmoney = bmoney-1000 where bname=' Ma Zhi ';
update bank set bmoney = bmoney+1000 where bname=' Liu Xinmiao ';
-- 4, End the business
-- 4.1 Submit
COMMIT;
-- 4.2 Roll back
ROLLBACK;
SET autocommit = 1;5,MySQL The four isolation levels
(1)Read Uncommitted( Read uncommitted content ) Also known as “ Dirty reading ”
(2)Read Committed( Read submissions Also called non repeatable )
(3)Repeatable Read( Can be reread ) Add the corresponding “ Fantasy reading ”
(4)Serializable( Serializable )

-- View the current isolation level
select @@global.transaction_isolation,@@transaction_isolation;6,MySQL function
| Function name | Return value |
|---|---|
| curdate() | Returns the current date |
| curtime() | Return to the current time |
| now() | Returns the current date and time |
| date_format(date,fmt) | As specified fmt Format format date date value |
| year(date) | Return date date A year of (1000~9999) |
| month(date) | return date The month of (1~12) |
| day(date) | return date Day of |
# function
-- Must appear in SQL In the sentence , Not alone
-- Date function
SELECT CURDATE();
SELECT CURTIME();
SELECT NOW();
SELECT DAYOFWEEK(NOW()) - 1 week ;
-- Please check the students whose birthdays are in that month
SELECT * FROM student WHERE MONTH(birthday) = MONTH(NOW());
-- Format date
SELECT DATE_FORMAT(NOW(),'%Y-%c-%d');7, Calculate the difference between dates
-- Time difference ( Days )
SELECT DATEDIFF(NOW(),'2022-5-1');
-- Time difference calculation date
-- + How long after the date - How long ago was the date
SELECT NOW() + INTERVAL 14 DAY;
SELECT * FROM student WHERE MONTH(birthday) = MONTH(NOW());8, Common string functions
| Function name | Return value |
|---|---|
| concat(s1,s2...sn) | take s1,s2...,sn Concatenated into a string |
| concat_ws(sep,s1,s2...sn) | take s1,s2...,sn Concatenated into a string , And use sep Character spacing |
-- String function
SELECT CONCAT('hello',' Hello ');
SELECT CONCAT_WS('!','hello',' Hello ');8, Common mathematical functions
| Function name | Return value |
|---|---|
| ceiling(x) | Return is greater than the x The minimum integer value of |
| floor(x) | Back to less than x The maximum integer value of |
| round(x,y) | Returns the parameter x The rounding of is y A decimal value |
| truncate(x,y) | Return to digital x Truncate to y The result of decimal places |
-- Rounding up
SELECT CEILING(68.15);
-- Rounding down
SELECT FLOOR(68.15);
-- rounding
SELECT ROUND(68.55,1);
-- truncation
SELECT TRUNCATE(68.55,1);-- Aggregate functions
SELECT ssex,COUNT(*),GROUP_CONCAT(sname) FROM student GROUP BY ssex;9, The slow query
Concept :MySQL Default 10 No response in seconds SQL result , Slow query .
# The slow query
select count(*) from emp;
select count(1) from emp;
select count(eid) from emp;
show create table emp;
CREATE TABLE `emp` (
`eid` bigint(20) DEFAULT NULL,
`ename` varchar(10) DEFAULT NULL,
`esex` varchar(5) DEFAULT NULL,
`ebirthday` datetime DEFAULT NULL,
`ehisday` datetime DEFAULT NULL,
`job` varchar(15) DEFAULT NULL,
`emoney` decimal(10,2) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
-- View connections
show status like 'connections';
-- Slow query status OFF close ON Turn on
Show variables like '%slow_query%';
-- Turn on slow query
set global slow_query_log='ON';
set global log_output='TABLE';
-- The number of slow queries
show status like 'slow_queries';
select * From mysql.slow_log ;
select convert(sql_text using utf8) sql_text from mysql.slow_log
ALL: This connection type performs a full scan on each of the previous records Union , This is generally worse , It should be avoided as much as possible .
explain select eid,ename,esex,ebirthday,ehisday,job ,emoney
from emp where eid = 20000;10, Indexes
Concept : An index is a structure that sorts the values of a column or columns in a database table , Use indexes to quickly access specific information in database tables .
characteristic :
(1) Efficiency : Using index can improve the efficiency of database query .
(2) integrity : Users can accelerate the connection between meters , Achieve referential integrity between tables .
(3) Uniqueness : The index can ensure the uniqueness of the checked data .
(4) Special abilities : By using index , In the process of query , Using the optimize hide tool , Improve system performance .
shortcoming :
(1) Although the index greatly improves the query speed , At the same time, it will reduce the speed of updating the table , Such as on the table INSERT、
11, Classification of indexes
(1) primary key Defining a primary key for a table in a database diagram will automatically create a primary key index .
(2) unique index Rows with the same index value are not allowed , This prevents duplicate indexes or key values .
(3) General index The most basic index type , There's no such thing as uniqueness .
(4) Full-text index The key technology of search engine , Used to retrieve text information , It can be words or paragraphs .
alter table emp add primary key (eid);
explain select eid,ename,esex,ebirthday,ehisday,job ,emoney
from emp where eid = 44040;
explain select * from emp where ename = ' Weicui '
-- Add general index
alter table emp add index(ename);create table wenzhang(
wid int PRIMARY KEY auto_increment,
title varchar(20),
content text,
zuozhe varchar(20),
FULLTEXT(title,content,zuozhe) with parser ngram
);
insert into wenzhang(title,content,zuozhe)
values
(' Xi'an past ',' This is an ancient city , There are many people in this city , factory , building ',' Old Xue '),
(' Shanxi past ',' This is an ancient city , There are many people here , factory , Architecture ',' Old Xu '),
(' The past of the earth ',' This is an ancient planet , There are many people here ',' Lao Liu is in Xi'an '),
(' Galactic past ',' This is a department , I plan to build a Xi'an outside this department ',' Peng ');
-- It is a kind of fuzzy query
select * from wenzhang where match(title,content,zuozhe) AGAINST(' Xi'an ');
select * from wenzhang where match(title,content) AGAINST(' Xi'an ');
alter table wenzhang add fulltext(title,content) with parser ngram;
-- Look at the index
show index from student;
cardinality / count(*) The closer the 1 The better The closer the 0 Worse
show index from emp;
边栏推荐
- Query method of database multi table link
- [pytorch] simple use of interpolate
- 软件测试面试要问的性能测试术语你知道吗?
- 遇到程序员不修改bug时怎么办?我教你
- The salary of testers is polarized. How to become an automated test with a monthly salary of 20K?
- Capitalize the title of leetcode simple question
- Rearrange spaces between words in leetcode simple questions
- Global and Chinese markets for GaN on diamond semiconductor substrates 2022-2028: Research Report on technology, participants, trends, market size and share
- [HCIA continuous update] working principle of static route and default route
- Dlib detects blink times based on video stream
猜你喜欢

The latest query tracks the express logistics and analyzes the method of delivery timeliness

Database monitoring SQL execution
![Cadence physical library lef file syntax learning [continuous update]](/img/0b/75a4ac2649508857468d9b37703a27.jpg)
Cadence physical library lef file syntax learning [continuous update]

全网最详细的postman接口测试教程,一篇文章满足你

UCORE lab2 physical memory management experiment report

Want to learn how to get started and learn software testing? I'll give you a good chat today

About the garbled code problem of superstar script

Logstack introduction and deployment -- elasticstack (elk) work notes 019

Brief description of compiler optimization level

基于485总线的评分系统双机实验报告
随机推荐
Global and Chinese market for antiviral coatings 2022-2028: Research Report on technology, participants, trends, market size and share
What is the transaction of MySQL? What is dirty reading and what is unreal reading? Not repeatable?
[pointer] solve the last person left
Global and Chinese market of maleic acid modified rosin esters 2022-2028: Research Report on technology, participants, trends, market size and share
Want to learn how to get started and learn software testing? I'll give you a good chat today
Soft exam information system project manager_ Project set project portfolio management --- Senior Information System Project Manager of soft exam 025
“Hello IC World”
To brush the video, it's better to see if you have mastered these interview questions. Slowly accumulating a monthly income of more than 10000 is not a dream.
The minimum number of operations to convert strings in leetcode simple problem
Zhejiang University Edition "C language programming experiment and exercise guide (3rd Edition)" topic set
CSAPP homework answers chapter 789
软件测试需求分析之什么是“试纸测试”
王爽汇编语言详细学习笔记二:寄存器
UCORE lab8 file system experiment report
Cadence physical library lef file syntax learning [continuous update]
Es full text index
Investment should be calm
C language do while loop classic Level 2 questions
Install and run tensorflow object detection API video object recognition system of Google open source
MySQL数据库(二)DML数据操作语句和基本的DQL语句