Advanced Python -- understanding and using Python "script"
preface
The main content of this article is to use Python to write some practical scripts to facilitate our daily use (as long as we dare to think, we dare to create). In daily life, we write the front-end and back-end, and often use the database. MySQL is often used in Python to operate mysql. Usually, we need to write a lot of sql cod ...
Added by icd_lx on Tue, 01 Feb 2022 07:56:08 +0200
Hard core resources! Redis five data structures and three advanced data structures analysis (detailed explanation)
The last one shared "understanding JVM in depth", and this one shared "Redis five data structures and three advanced data structure analysis".
preface
The most important and fundamental part of Redis is its rich data structure. The reason why Redis stands out is that it has rich data structure and can support a variety ...
Added by kaedus on Tue, 01 Feb 2022 06:14:41 +0200
2021 New Summary: Docker from Getting Started to Actual, Pure Dry!
Introduction to Docker
What is Docker?
To tell you the truth about what Docker is, let me show you what Docker is through four points.
Docker is the world's leading software container platform, developed and implemented in the Go Language.Docker frees developers by automating repetitive tasks such as setting up and configuring development en ...
Added by danoli on Tue, 01 Feb 2022 04:52:50 +0200
Summary of MySQL additions, deletions and modifications
Operation of summary table
Summarize according to Master Kang's video tutorial, which is convenient for individuals to review, query and use
Create and manage tables
#Create database
CREATE DATABASE IF NOT EXISTS XXXXXX;
#
CREATE DATABASE XXXXXX CHARACTER SET 'UTF8';
#Use database
USE XXXXXX;
#modify the database
ALTER DATABASE xxxxxx CHARA ...
Added by Pavlos1316 on Tue, 01 Feb 2022 04:25:23 +0200
Introduction to case sensitivity of Dameng database
1, Object name
1. Case sensitive
CREATE TABLE TEST.Abc(COL INT);
------For creating a table, when case sensitive, the table name ABC is not enclosed in double quotation marks, and the system will automatically convert it to uppercase table name ABC
The inquiry is as follows:
SELECT * FROM TEST.Abc; ------Successful execution SELECT * F ...
Added by mrbaseball34 on Tue, 01 Feb 2022 03:34:40 +0200
Design and implementation of online examination system
1. Design background
Recently, some users have put forward the need to implement a set of video learning module and online examination module in the original website. Here, I will first introduce the design idea of the following online examination module.
To realize an online examination system with basic functions, the following elements are ...
Added by godwisam on Tue, 01 Feb 2022 03:30:42 +0200
Index, view, Oracle of database
1. Index index
1. Definition
Indexing is a fast, ordered data structure that helps databases efficiently retrieve data. In addition to data, the database system maintains data structures (additional storage space) that satisfy specific lookup algorithms, which point to the data in some way so that efficient lookup algorithms can be implemente ...
Added by Majes on Mon, 31 Jan 2022 22:32:37 +0200
Design pattern learning notes -- overview, creative pattern
Design mode
summary
significance
The essence of design pattern is the practical application of object-oriented design principles. It is a full understanding of the encapsulation, inheritance and polymorphism of classes, as well as the association and composition of classes
Basic elements
name
Question: the application environment of th ...
Added by gowni on Mon, 31 Jan 2022 22:10:52 +0200
Proc Programming Report
Proc programming experiment 1, Experimental content 1) Create three tables in the database: Student s, course C and s grade SC. 2) Write a program using pro*C to complete the operation of the database and output it according to the corresponding format. The format is as follows:
3) Use Pro*C to write the program, complete the operation of the ...
Added by cdinca on Mon, 31 Jan 2022 21:17:31 +0200
tlinux 3.1 installing PostgreSQL 13 x
tlinux 3.1 installing PostgreSQL 13 x
TencentOS Server is a customized server operating system independently developed by Tencent. The system integrates many services The advantages of the device series include the self-developed software, which is convenient for users to operate and use, and provides all-round (kernel and user state) Operatin ...
Added by buzzby on Mon, 31 Jan 2022 09:45:04 +0200