SQL Server 2008 R2 learning summary
Beginning SQL Server 2008 R2 summary
The reference room for learning is the Chinese version of SQL Server 2008. From entry to mastery, the whole learning idea is also to learn according to the idea of the text. But not C#, and JAVA. The latter two examples did not do it.
1, SQL Server quick start 1. Basic concepts (1) Watch A table is a data ...
Posted by newburcj on Mon, 18 Oct 2021 05:06:17 +0200
Spring5 learning notes (14) - "spring5 declarative transaction management"
1, Transaction operation
1. Transaction concept
2. Build a business environment
1. Create database tables and add records 2. Create a service, build a dao, and complete the object creation and injection relationship (1) service is injected into dao, JdbcTemplate is injected into dao, and DataSource is injected into JdbcTemplate
@S ...
Posted by greensweater on Sat, 16 Oct 2021 21:00:21 +0200
SQL basic interview questions ☆☆☆☆ sorting, deleting, creating temporary tables, etc
SQL basic grammar interview questions
The table is designed as follows:
domain namedata type Field descriptionremarksClassVarcharclassPKNoVarcharStudent numberPKNameVarcharStudent nameManagervarcharClass cadre Y: Yes N: no
domain namedata type Field descriptionremarksClassVarcharclassPKNoVarcharStudent numberPKMathsFloatMathematics achie ...
Posted by BarmyArmy on Fri, 15 Oct 2021 21:15:48 +0200
mysql usage and Practice
MySQL database overview
It is used to store and manage data, and finally form a table like appearance with rows and columns (fields) Classification: relational database and non relational database There are many products of relational database: MySQL (free) Oracle SqlServer There are many non relational database products: Redis
Database ranki ...
Posted by JohnMC on Fri, 15 Oct 2021 11:03:09 +0200
Java classic foundation project -- detailed design of student information management system [with source code]
🍅 Author home page: Li Yangyong
🍅 Introduction: high quality creator in Java field 🏆, [Li Yangyong] author of public account ✌ Resume template, learning materials, interview question bank [pay attention to me and give it to you]
🍅 Get the source code at the end of the article 🍅
Near the end of the semester ...
Posted by acrayne on Thu, 14 Oct 2021 01:25:28 +0200
Chapter 43 SQL command FETCH
Chapter 43 SQL command FETCH
Reposition the cursor and retrieve data from it.
outline
FETCH cursor-name [INTO host-variable-list ]
parameter
Cursor name - the name of the currently open cursor. The cursor name is specified in the DECLARE command. Cursor names are case sensitive.Into host variable list - optional - places the d ...
Posted by apw on Wed, 13 Oct 2021 02:19:36 +0200
Dazzle "library" action - prize solicitation of Jincang of the National People's Congress - KingbaseES table space encryption - transparent encryption
[this article is participating in the action of showing off the "Treasury" - prize solicitation of Jincang of the National People's Congress]
Activity link: https://marketing.csdn.net/p/98bd30353e7cb998b6070a89e8b91edb
Transparent storage encryption refers to encrypting the data when it is written to the disk, and decrypting it when ...
Posted by jipacek on Wed, 13 Oct 2021 00:13:37 +0200
Redis architecture design practice
catalogue
Master slave replication
Background introduction
Basic architecture
Quick start practice
Principle analysis
Full synchronization
Incremental synchronization
Interview questions
If you were aske ...
Posted by sps on Tue, 12 Oct 2021 21:09:06 +0200
DML: adding, deleting and modifying data in a table DQL: querying records in a table
DML: add, delete and modify data in the table
Add data
Syntax:
insert into table name (column name 1, column name 2,... Column name n) values (value 1, value 2,... Value n);
be careful:
The column name should correspond to the value one by one If the column name is not defined after the table name, values are added to all columns by ...
Posted by Admin32 on Mon, 11 Oct 2021 23:43:21 +0200
Introduction and use of MyBatis
1. Official documents of mybatis
Mybatis – MyBatis 3 | getting startedhttps://mybatis.org/mybatis-3/zh/getting-started.html
2. Why do you need Mybatis
Simplify the traditional JDBC code and realize automatic mappingSimple and easy to useMost companies use itadvantage:Easy to learn: itself is small and simple. There is no third-party de ...
Posted by mbrown on Mon, 11 Oct 2021 23:32:58 +0200