New password strategy of mysql8

The 8.0 version of mysql adds the functions related to password policy management. The new version can do more control and operation on account password requirements, such as setting reusable restrictions on passwords, modifying password verification policies, etc. the security has been improved compared with the 5.7 version. Let's look at i ...

Posted by AdB on Wed, 12 Feb 2020 23:24:59 -0800

Database development MySQL constraints and table relationships

First, introduce Constraints are optional parameters, just like the width of the data type. Function: used to ensure data consistency and consistency. It is mainly divided into: PRIMARY KEY (PK) identifies that the partition is the PRIMARY KEY of the table and can uniquely identify records FOREIGN ...

Posted by runei on Wed, 12 Feb 2020 05:14:48 -0800

The simplest spring boot integrated Spring Data JPA tutorial

At the beginning of using the spring boot development project, the Spring Data JPA used by the ORM framework was only used intermittently for more than a year, without making some summary. Taking advantage of the current serious epidemic situation and little work, I will take a note and record the gener ...

Posted by midge1970 on Tue, 11 Feb 2020 23:53:38 -0800

mysql database technology 1 - Basic addition, deletion and alteration sql statements

1. Classification of database languages DDL: Database Definition Language Used to create, modify, and delete data structures within a database, such as: 1: Create and delete databases (CREATE DATABASE || DROP DATABASE); 2: Create, modify, rename, delete tables (CREATE TABLE | ALTER TABLE | RENAME TABLE | DROP TABLE, TRUNCATE TABLE); 3: Create a ...

Posted by timmerk on Tue, 11 Feb 2020 20:46:07 -0800

MySQL transaction, permission, index and specification

One transaction Core: success or failureAtomicity Both succeed or fail Consistency The data integrity before and after the transaction should be consistent, 1000 Principle: ACID1. Atomicity Either they succeed or they fail; 2. Consistency Data integrity before and after transactions should be consiste ...

Posted by nawal on Tue, 11 Feb 2020 02:41:44 -0800

Data Structure Handwriting Tree Traversal (Full Implementation)

1. Summary of Previous Situation This is a tree traversal implementation. To focus on how queues are implemented, follow these articles:Data structure (3) Handwritten queues2. Basic concepts of trees Chain lists, stacks, and queues are one-to-one linear structures, one-to-many linear structures - trees. ...

Posted by amrigo on Mon, 10 Feb 2020 21:47:25 -0800

What does -e mean in mysql database?Detailed use of the -e parameter

Can be manipulated with shell scripts mysqldata base , mysql-e parameter can be used to perform various sql operations (create, delete, add, delete, change, check). usage The sql statement of mysql-hhostname-Pport-uusername-ppassword-e related MySQL allows you to manipulate mysql's methods in a shell without running MySQL at ...

Posted by n14charlie on Mon, 10 Feb 2020 08:26:27 -0800

Initial experience of XXL job distributed task scheduling

brief introduction XXL-JOB Is a lightweight distributed task scheduling platform, its core design goal is to develop quickly, learn simple, lightweight, easy to expand. Open source code and access to a number of companies online product line, out of the box. The official documents are very complete, so there is no need to elaborate. This paper ...

Posted by jonah on Mon, 10 Feb 2020 08:24:36 -0800

SSM integration Spring+SpringMVC+Mybatis

Chapter 1: building an integrated environment 1. Build an integrated environment Integration Description: there are many ways to integrate SSM. We will choose XML + annotation The idea of integration Build an integrated environment first First, set up the Spring configuration Using Spring to ...

Posted by Admiral S3 on Mon, 10 Feb 2020 07:44:49 -0800

[MySQL] performance ﹣ schema Library of MySQL

MySQL comes with four databases, which are: information_schema performance_schema mysql test This article introduces the performance ﹣ schema library. Sketch Performance schema library is a new storage engine in MySQL 5.5. It is mainly used to collect database server performance parameters, monitor ...

Posted by tanju on Mon, 10 Feb 2020 03:27:39 -0800