Addition, deletion and modification of database

Construction of Navicat for MySQL database and how to build person table Import mysql-connector-java-5.0.8-bin.jar package into IDE Create a directory for the person small project Writing Specific Codes Note to import the jar package into the library The first step is the construction of Navicat for MySQL database and how to build tables w ...

Posted by aseaofflames on Wed, 10 Jul 2019 21:16:05 +0200

Building MySQL High Availability Load Balancing Cluster

1. Introduction When using MySQL, the number of users and data increases with time, and the number of visits increases dramatically. Finally, MySQL will reach a bottleneck, so the performance of MySQL will be greatly reduced. This result is not conducive to the promotion of software. How to overcome this bottleneck and increase the concurrenc ...

Posted by leap500 on Tue, 09 Jul 2019 20:28:52 +0200

Building a Simple Internet of Things Server and Client-Bluetooth Control (16)

Bluetooth is used to control the device, so USART1 of the board is used for computer serial port, USART2 is used for wifi transmission, USART3 is used for Bluetooth control. Bluetooth is chosen to prevent remote control devices (mainly wifi control protocol will not be written.)Code address: https://github.com/klren0312/stm32_wifi2017.4.19 Buil ...

Posted by HP400 on Sun, 07 Jul 2019 23:32:48 +0200

Doker from Introduction to Actual Warfare-Actual Warfare Chapter

Preface This is an article I wrote after three weeks of spare time study. My understanding of docker is still at the beginning stage. I hope this article can help some friends who want to learn docker get started quickly. The exercises and actual combat codes are in the github repository. If my article can help you, you can give it to me. docke ...

Posted by Senate on Sun, 07 Jul 2019 03:36:06 +0200

4. Grouping and Union of MySQL

Note: The blog summarizes the knowledge points in MySQL, the core content of Chapter 13, 14, 15, 16, 17 and 18. Operators involved: GROUP BY, HAVING, ORDER BY, INNER JOIN, OUT JOIN, AS, UNION; Introduction to the tables used in the book and their script files: Introduction to the Table in Mysql Packet data 1. Data grouping SELECT ve ...

Posted by otterbield on Sat, 06 Jul 2019 22:31:44 +0200

optimize table to optimize mysql example

Raw data Data volume mysql> select count(*) as total from ad_visit_history; +---------+ | total | +---------+ | 1187096 | //There are more than 1.18 million pieces of data in total +---------+ 1 row in set (0.04 sec) Table file size stored on hard disk [root@BlackGhost test1]# ls |grep visit |xa ...

Posted by Niruth on Tue, 02 Jul 2019 18:19:44 +0200

First Installation and Use of MYSQL Database in Windows Environment

The main content of this paper is the first time to use MYSQL database in Windows environment, including MYSQL installation, service start, database landing, database creation, view, deletion, table creation, query and deletion. Requirements for a certain basis for the database, such as already familiar with DB2 database. Environmental Scien ...

Posted by JamesyBHOY on Tue, 02 Jul 2019 01:08:47 +0200

mysql binlog event type

In fact, all operations recorded by MySQL binlog have corresponding event types. For example, DML operations in STATEMENT format correspond to QUERY_EVENT type, and DML operations in ROW format correspond to ROWS_EVENT type. QUERY_EVENT QUERY_EVENT records the operation of a transaction in the form of text. Events of type QUERY_EVENT are usu ...

Posted by contra10 on Mon, 01 Jul 2019 22:50:29 +0200

RocketMQ Source Parsing: High Availability

> Original address: RocketMQ Source Parsing: High Availability > RocketMQ with annotated address: YunaiV/incubator-rocketmq > (vii) This series is updated every 1-2 weeks. You are welcome to subscribe, follow and collect GitHub. 1. Overview 2. Namesrv High Availability 2.1 Broker registered with Namesrv 2.2 Producer, Consumer Visit ...

Posted by dvonj on Mon, 01 Jul 2019 01:19:50 +0200

mysql-5.6.21 source installation under CentOS 6.6

Uninstall the old version See if MySQL Server is installed on the system: Use the following command to check whether MySQL Server is installed rpm -qa | grep mysqlIf it exists, use some commands to uninstall rpm -e mysql //General deletion mode rpm -e --nodeps mysql // Strong deletion mode, if you use the above command to delete, ...

Posted by Zhadus on Mon, 01 Jul 2019 01:14:56 +0200