4 system databases and database notes of MySQL

Four system databases of MySQL +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ It is used to store information such as MySQL server, database and system performance. mysql Mysql database is the core da ...

Added by fandelem on Sat, 25 Dec 2021 01:22:07 +0200

Manually deploy MySQL database in CentOS system

This article comes from Alibaba cloud official mirror: Alibaba open source mirror - OPSX mirror - Alibaba cloud developer community ] Original link: Manual deployment of MySQL database in CentOS - Alibaba cloud developer community 1, Preconditions Registered alicloud account.If you use ECS in mainland China, please ensure that your account h ...

Added by blueman on Fri, 24 Dec 2021 21:43:34 +0200

sql statement summary

Using sql statements to operate the database Create database Syntax: CREATE DATABASE [IF NOT EXISTS] db_name [CHARACTER SET charset_name] [COLLATE collation_name] Where charset_name is the default character set specified for the database Collate is the default collation rule specified for the database (collation rule is a set of rules us ...

Added by scross on Fri, 24 Dec 2021 19:55:33 +0200

mysql based transactions

Course notes Day28 Database paradigm Database transaction Database view Backup and restore Chapter I database paradigm Section 01 basic theory What is the database paradigm? When designing a table, we need to follow some database design specifications. Why use paradigms? In order to reduce the data redundancy in the database. ( ...

Added by slightlyeskew on Fri, 24 Dec 2021 19:43:25 +0200

[architect interview - large factory internal interview question-2] - 33 written MySQL questions with answers and table structure

After finishing these 33 questions, we don't have to worry about the written sql test any more. We don't talk much nonsense. Let's go straight to the dry goods!!! 1: Title 1. Query the Sname, Ssex, and Class columns of all records in the Student table. 2. Query all the companies of teachers, that is, the non duplicate Depart ment column. 3. ...

Added by shmeeg on Fri, 24 Dec 2021 18:55:59 +0200

Common functions in MySQL

preface: The database used by the following MySQL functions: Link: https://pan.baidu.com/s/1N8uoyj0Wv6nq4zFdEnmGBw Extraction code: 6666 1, Single line function 1. Character function length gets the number of bytes of the parameter value SELECT LENGTH('john'); result: concat splice string SELECT CONCAT(last_name,'Splicing',first ...

Added by suncore on Fri, 24 Dec 2021 17:33:08 +0200

Analysis of MySQL table lock and row lock mechanism

Linux server development / background architect knowledge system arrangement Is it a blessing or a pit? If you don't know the principle of MySQL locking, you will be miserable by it! I don't know where the pit is? It's okay. I'll mark some pits for you. Don't step on it when you meet it. Through the contents of this chapter, you will learn MyS ...

Added by cobalt30 on Fri, 24 Dec 2021 04:38:55 +0200

Mail management database design -- MySQL

1. Project background and demand analysis 1.1 project background E-mail is widely used in enterprises. E-mail is generally used for communication and business between employees and customers. However, due to the lack of awareness of managing e-mail in many enterprises, a large number of e-mail management is chaotic, and there are some hid ...

Added by EODC on Thu, 23 Dec 2021 20:56:38 +0200

JavaWeb+MySQL to achieve a simple message board (very detailed ~)

Simple message board implemented by JavaWeb+MySQL Hello, dear friends, I'm the Bug terminator ~. Unconsciously, I've been on holiday for 2 weeks. I've come to Monday. Today, I decided to update the article. Today, I'll bring you some experience in my learning process and avoid pitfalls for my friends. Let's share today Message board requ ...

Added by Dennis1986 on Thu, 23 Dec 2021 18:51:39 +0200

Learn Java step by step Chapter 25 JDBC and database connection pool

Chapter 25 JDBC and database connection pool 821. Schematic diagram of JDBC JDBC provides a unified interface for accessing different databases and shields the use details for users. Java programmers can use JDBC API to connect to any database system that provides jdbc driver, so as to complete various operations on the database The Java de ...

Added by aubeasty on Thu, 23 Dec 2021 16:10:27 +0200