Detailed explanation of multi-directional operation of SpringBoot integrated MongoDB
preface
MongoDB is a database based on distributed file storage. Written in C + +. It aims to provide scalable high-performance data storage solutions for WEB applications.
MongoDB is a product between relational database and non relational database. It is the most functional and relational database among non relational databases.
Installati ...
Posted by AngelicS on Tue, 08 Feb 2022 10:34:04 +0100
OushuDB implements the use range from DBLINK to ORACLE
background
With the continuous expansion of data volume, the strengthening of analysis demand and the process of localization, the original traditional database can no longer support and complete heavy tasks.
More and more data warehouses and data Lake platforms are migrating to MPP, big data and cloud original platforms.
However, in thi ...
Posted by manishdugar on Mon, 07 Feb 2022 21:57:33 +0100
Introduction to Maxwell of Flink real-time project
1. Introduction to Maxwell
Maxwell is a MySQL real-time capture software written in Java, which is open source by Zendesk in the United States. Real time reading
MySQL binary log Binlog and generates JSON format messages, which are sent to Kafka, Kinesis
RabbitMQ, Redis, Google Cloud Pub/Sub, file or other platform applications.
Official we ...
Posted by kraen123 on Mon, 07 Feb 2022 19:54:35 +0100
[java learning path] (mysql) 003 Creation, deletion and constraint of limit and table in mysql
limit
limit action
Extract part of the query result set. It is usually used in paging queries
How does limit work?
Full usage: limit startIndex, length
startIndex Is the starting subscript, length Is the length.
The starting subscript starts at 0.
Default usage: limit 5; This is the top five.
Take out the top 5 employees in descend ...
Posted by Boo-urns on Mon, 07 Feb 2022 19:03:38 +0100
The basic syntax of MySQL is the syntax of creating tables and adding, deleting and modifying data in tables
Operation syntax of MySQL basic syntax on tables
This paper summarizes the syntax of adding, deleting and modifying data in tables in MySQL and the syntax of creating tables
Add data to the table (insert)
Adding data to a table can be done individually or in batches
Basic grammar
Add single
insert into Table name(field,field,fie ...
Posted by washbucket on Mon, 07 Feb 2022 12:28:59 +0100
[Yugong series] January 2022: Construction of Docker container Mysql master-slave replication
#Preface system environment:
Windows 11 Enterprise Editionmysql8.0+dockervm virtual machine
1, Construction of Mysql master-slave replication
1. Pull the image
docker pull mysql
2, Configuration of MYSQL main service
Because I already have local mysql in 3306, the mysql port in the container is set to 33306
docker run --name mys ...
Posted by XzorZ on Sun, 06 Feb 2022 22:24:27 +0100
MySQL topic 5 - sub query
Subquery
give an example
Find out the name and salary of employees with higher salary than Abel
Method 1: multiple queries
SELECT salary `salary_abel` FROM employees WHERE last_name = 'Abel';
SELECT last_name, salary FROM employees WHERE salary > salary_abel;
Mode 2 self connection
SELECT e2.last_name, e2.salary FROM employees e1 , em ...
Posted by rahulephp on Sun, 06 Feb 2022 21:47:05 +0100
mysql database: retrieving information from tables
catalogue
(1) Select all data
(2) Modify table contents
Method 1
Method 2
(3) Select a row individually
(4) Select special columns
(5) Classification line
(6) Date calculation
(7) NULL value operation
(8) Pattern matching
(1) Select all data
select * from pet;
Return:
(2) Modify table contents
Method 1
Delete first
DELETE FR ...
Posted by Xeon on Sat, 05 Feb 2022 20:01:03 +0100
Java graduation design + ready-made products - "Java boutique design" is based on java springmvc+mybatis wine mall management system (source code + sql)
Description of main functions:
Administrator role
View customer information, beverage management, view categories, order management and other functions.
User role:
Users log in and register, modify personal information, view the home page, view the classification of drinks, view hot drinks, view the details of drinks, view the shopping cart ...
Posted by iceblox on Sat, 05 Feb 2022 11:16:14 +0100
Detailed explanation of Mysql constraints
Detailed explanation of Mysql constraints
The blog talks about an important knowledge point in database - constraints
1, What are constraints
constraint
Constraints are actually constraints on the data in the table
2, Restraint effect
The purpose of adding constraints in table design is to ensure that the records in the table are complete ...
Posted by fenderville on Thu, 03 Feb 2022 14:39:54 +0100