[Hard Hive] MYSQL/HIVESQL Pen Test: HIVESQL
Welcome to the blog home page: WeChat Search: import_bigdata, original hard core creator of big data domain _import_bigdata_CSDN blog Welcome to comment, collection, message, message exchange!This article was originally created by Wang Zhiwu and first published in the CSDN blog!The first CSDN forum of this article is forbidden to be reproduced ...
Added by jimdavidson on Sat, 11 Sep 2021 06:25:59 +0300
clickhouse preliminary cognition
1, Introduction
1.1 what is a clickhouse
ClickHouse is a columnar database management system (DBMS) for on-line analysis (OLAP). In the traditional line database system, data is stored in the following order: Data in the same row is always physically stored together.
Common line database systems include MySQL, Postgres and MS SQL Server. ...
Added by ycoleman on Fri, 10 Sep 2021 07:03:58 +0300
MySQL can log in without a password (in Linux)
After installing mysql, I found that you can enter MySQL without entering a password. After studying for a long time, I finally found a solution.
Step 1: input in the console (modify mysqld.cnf file)
sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf
Enter the mysqld.cnf configuration file, and then add the sentence skip grant tables in the [mysql ...
Added by jh_dempsey on Thu, 09 Sep 2021 02:29:09 +0300
After using MybatisPlus, I haven't written sql for a long time
(1) Preface
When you first wrote JDBC, you needed to manually configure connection information by writing SQL statements one by one. Then Mybatis appeared, no more manual configuration of connection information was needed, and the SQL statements were isolated from the code, but Sql was unavoidable. Then Mybatis Plus appeared, which did not eve ...
Added by $kevan on Thu, 09 Sep 2021 00:57:02 +0300
MySQL Database - Advanced [Advanced] SQL Statements - SQL Advanced Statements, Functions
1. SQL Advanced Statements
1, SELECT
Displays all data for one or more columns in a table
Syntax: SELECT "field" FROM "table name"; Example:
select * from infol;
select name from infol;
2,DISTINCT
Do not show duplicate content
Syntax: SELECT DISTINCT "field" FROM "table name"; Example:
s ...
Added by markster on Mon, 06 Sep 2021 19:23:45 +0300
binlog2sql for MySQL(24) data recovery
1, Foreword
binlog for MySQL(23) data recovery
This article will use binlog2sql tool for data recovery
binlog2sql usage conditions
2, binlog2sql
https://github.com/danfengcao/binlog2sql
1. Installation
git clone https://github.com/danfengcao/binlog2sql.git && cd binlog2sql
pip3 install -r requirements.txt
2. Use
- ...
Added by fatalcure on Mon, 06 Sep 2021 02:25:48 +0300
MySQL database addition, deletion, modification, cloning, foreign keys and other operations
catalogue
1. SQL field data type
2. View database information statement
3. SQL statement
Create and delete database data tablesAdd, delete and query records to the tableModify the table name, add, modify, delete fields, and add unique constraintsView, delete and add indexes in tablesExtension function, field value self increment, etc
4. Da ...
Added by Pyro4816 on Mon, 06 Sep 2021 02:22:08 +0300
Mybatis Learn Notes
#Mybatis ###First example #####Step 1: Add Mybatis 3.4.5 coordinates, mysql, junit, logj to the pom.xml file Step 2: Write the User entity class. Step 3: Write the SqlMapConfig.xml configuration file (in resources)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybati ...
Added by Errant_Shadow on Sun, 05 Sep 2021 20:53:34 +0300
Using terminal operation database MySQL
Using terminal to operate MySQL
MySQL installation tutorial reference rookie tutorial: https://www.runoob.com/mysql/mysql-install.html Content reference website: https://github.com/hjzCy/sql_node/blob/master/mysql/MySQL%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0.md
1, Basic operation
cmd entry method under win: mysql -uroot -p
See what da ...
Added by nediaz on Sat, 04 Sep 2021 03:22:06 +0300
Introduction to MySQL (Lesson 1)
Introduction to MySql:
1. Why use MySQL
Data is easily lost in memory The data is in the file, which is not easy to operate
2. Whenever
Use a complete management system for unified management and easy query
3. When will it be used
Where persistent data storage is required
Terminology: DB: the "warehouse" in which a database sto ...
Added by sp@rky13 on Sat, 04 Sep 2021 01:54:41 +0300