MySQL optimization and locking mechanism

MySql logical architecture It is mainly divided into: connection layer, service layer, engine layer and storage layer. The process of the client executing a select command is as follows: Connection layer: the top layer is some clients and connection services, including local sock communication and most communication similar to tcplip b ...

Added by mfos on Wed, 22 Sep 2021 04:36:36 +0300

Big data Hive parameter configuration

1 clips and commands client and commands 1.1 Hive CLI $HIVE_HOME/bin/hive is a shellUtil, usually called hive's first generation client or old client. It has two main functions: 1: It is used to run Hive queries in interactive or batch mode. Note that as a client, the Hive metastore service is required and accessible, not the hiveserve ...

Added by Kodak07 on Tue, 21 Sep 2021 14:17:31 +0300

Database notes 01 introduction to MySQL and SQL statements

Database notes 01 introduction to MySQL and SQL statements (Part I) 1, Server, database introduction: The server: Concept: a computer that can provide a service. A server is a combination of hardware and softwareDatabase server: a computer equipped with database software, which can provide data addition, deletion, modification and query ...

Added by wiseass on Tue, 21 Sep 2021 14:01:34 +0300

Learning notes: common knowledge points of SQL

The source code of the question comes from: Data analysis - the most complete SQL interview questions in the whole network (after the interview, the interview is no longer empty) - it is divided into well-known Internet manufacturers and different industry backgrounds (such as e-commerce and games) I often test the three parts of the knowledge ...

Added by codects on Tue, 21 Sep 2021 08:53:08 +0300

September 12, 2021 Tianchi SQL training camp Task02

MySQL query sorting This note is the learning content of Alibaba cloud Tianchi Longzhu plan SQL training camp. The link is: https://tianchi.aliyun.com/specials/promotion/aicampsql ; 1.1 use of select Use format select Listing as 'alias', Listing ,.....from Table name where query criteria; Relevant rules An asterisk () means all columns. ...

Added by ridiculous on Mon, 20 Sep 2021 10:43:48 +0300

Simply learn SQL - select query

1. Query introduction 2. Comparison, logical operation Writing paradigm SELECT <Column name 1>,<Column name 2>, <Column name 3>, ...... FROM <Table name> GROUP BY <Column name 1>, <Column name 2>, <Column name 3>, ......; among The column names in select < column name 1 >, < colu ...

Added by anand_ragav on Sun, 19 Sep 2021 02:28:19 +0300

Common SQL statements of Zhimeng DedeCMS

We need to use SQL statements in many places, such as batch modifying (replacing) content, calling data content, etc. there is a template label {dede:sql /} in the system template for calling data. We can learn how to use this label by referring to the template label instructions in the help center.     Of course, before using and le ...

Added by ranam on Fri, 17 Sep 2021 17:15:39 +0300

What is DataSource? What is DruidDataSource?

summary         DataSource is translated as a data source. It is an interface provided by jdk, and then only provides two getConnection methods, namely, no parameters and the user name and password that need to be passed in. Therefore, it is something related to database connection, which can be used to obtain database con ...

Added by gilsontech on Wed, 15 Sep 2021 23:15:01 +0300

Play with the SQL function of Elasticsearch

The recently released Elasticsearch 6.3 contains the long-awaited SQL feature. Today, I'll introduce you to the specific usage. First, look at the interface support At present, the supported SQL can only query and read-only data, and cannot modify data. Therefore, our data insertion still needs to go through the previous conventional index in ...

Added by alant on Wed, 15 Sep 2021 22:11:52 +0300

MySQL 8.0 decompressed version installation and simple sql

Windows install MySql 1. Download Browser input https://downloads.mysql.com/archives/community/ Select the required version and install the required operating system. Here I download MySQL 8.0 and the compressed package of Windows system. Click Download to Download. If the Download speed is very slow, you can open the Download and copy the ...

Added by mpiaser on Wed, 15 Sep 2021 01:54:10 +0300