(for HNU) Java language programming: use java language to connect the database through JDBC, and create tables to add, delete, query and modify table data
[digression]
To tell you the truth, I have been very confused about the experimental class of a hospital in lake. From freshman to junior, I feel that the experimental class basically depends on self-study and reading the blogs of senior students and sisters. What is the meaning of the existence of teachers? Maybe it's Tim blocking [doge] If y ...
Posted by itsjames on Tue, 19 Oct 2021 12:06:59 -0700
Notes on basic usage of mysql
mysql Foundation
essential information
All query statements must be; End with a semicolon
Display database show databases;
Use database use database_name;
Table showing the database show tables;
Display column information of database table show columns from table_name;
Retrieve data SELECT
-- Retrieve all data from multiple columns ...
Posted by rushdot on Tue, 19 Oct 2021 11:59:48 -0700
MongoDB installation and configuration
MongoDB database is used in the company's project. Here we introduce the relevant knowledge, installation and configuration of MongoDB.
Introduction to MongoDB
MongoDB is written in C + + language. It is an open source database system based on distributed file storage.
In the case of high load, adding more nodes can ensure the server perform ...
Posted by mickd on Tue, 19 Oct 2021 11:11:04 -0700
MySQL basic query
MySQL query
Cascade: On delete cascade on update csacde update cascade When deleting data: you need to delete the foreign key table before deleting the primary key table When entering data: enter the primary key first, and then enter the foreign key
When the master table data is deleted, the master table data changes with the slave table, and ...
Posted by ciber on Mon, 18 Oct 2021 16:27:57 -0700
Mybatis Class Notes
1. Overview of Mybatis
1.1 Mybatis concepts
MyBatis was originally an open source project for apache, iBatis, which was migrated to google code by apache software foundation in 2010 and renamed MyBatis. Migrated to Github in November 2013. The term iBATIS, derived from a combination of "internet" and "abatis", is a per ...
Posted by taith on Mon, 18 Oct 2021 09:38:59 -0700
Redis tutorial - Introduction to redis Basics
A brief description of nosql concepts
The full name of nosql is not only sql, that is, not only non-relational database, but also nosql storage is not as dependent on business logic as relational database. nosql storage is very simple SQL storage.
What is redis
As we all know, total memory reads much faster than disk reads. So it's a good ch ...
Posted by imnu on Mon, 18 Oct 2021 09:19:38 -0700
Neo4j ② CypherQL introduction, create, match, return, condition, delete, set, sort, skip, Limit, de duplication, function, multi depth relationship node, transaction, index, constraint
catalogue
Part II Neo4j CQL
2.1 introduction to CQL
2.2 CREATE
2.3 MATCH RETURN command syntax
2.4 relationship creation
2.5 CREATE create multiple labels
2.6 WHERE clause
2.7 DELETE clause and REMOVE clause
2.8 SET clause
2.9 ORDER BY clause
2.10 SKIP and LIMIT
2.11 DISTINCT weight removal
Part III Neo4j CQL advanced
3.1 CQL fu ...
Posted by hostseller on Sun, 17 Oct 2021 19:49:15 -0700
SQL learning notes
1. Insert data INSERT INTO
1.1 insert complete line
INSERT INTO customers
VALUES(100,
'Tony',
'USA',
NULL,
NULL);
This example inserts a new customer into the customers table. Each column of data stored in the table is given by VALUES, and each column must be provided with a value. If a column has no value, NULL is u ...
Posted by Rick Corbett on Sun, 17 Oct 2021 11:21:42 -0700
SQL of mysql_ mode.only_ full_ group_ By attribute resolution
mysql8.0 official website: processing group by
1. Initial conditions
Now there is a table with two pairs of name = pants
2. Phenomenon
Execute the following sql to get the data grouped by name: GROUP BY name
SELECT name,author,SUM(price) FROM `t_book`
GROUP BY name
1055 exception occurred while executing sql
SELECT name,author,SUM ...
Posted by bpops on Sat, 16 Oct 2021 10:01:08 -0700
Spring Batch lightweight batch combat
1 theoretical basis before actual combat
1.1 what is spring batch
Spring Batch is a lightweight and comprehensive batch processing framework designed to support the development of powerful batch processing applications that are crucial to the daily operation of enterprise systems. At the same time, developers can easily access and utilize mor ...
Posted by theblacksheep on Fri, 15 Oct 2021 22:35:32 -0700