MySQL basics -- DQL
1, Introduction
Query specification
Each command is in; Or \ g or \ g endIt is recommended to use single quotation marks' 'for string type and date time type data, and double quotation marks'' for column alias, and omitting AS is not recommended
Annotation specification
Single line annotation: # annotation text (MySQL specific method)Si ...
Added by tet3828 on Fri, 04 Mar 2022 10:47:27 +0200
Echarts line chart, curve chart and three-dimensional chart
1 line chart
The data effect displayed when the mouse is placed on the point is used in the code
tooltip this parameter, where
The default value of show is
true, which can be omitted. When we don't want to display the floating prompt effect, change show to
false.
trigger sets this parameter. The effect i ...
Added by hemantraijain on Fri, 04 Mar 2022 10:41:40 +0200
Common basic questions of interview (common for front and back ends)
1. Status storage:
token: Token is the authentication method of user identity. The simplest token consists of uid (user's unique identity), time (timestamp of current time) and sign (signature)session: Session represents a session process between the server and the browser. This process is continuous or intermittent. A session ID is stored ...
Added by ktstowell on Fri, 04 Mar 2022 10:23:42 +0200
MySQL multi table & transaction notes
1. Multi table query:
1. Query syntax:
select
Column name list
from
Table name list
where....
2. Prepare sql
Create department table
CREATE TABLE dept(
id INT PRIMARY KEY AUTO_INCREMENT,
NAME VARCHAR(20)
);
INSERT INTO dept (NAME) VALUES ('Development Department'),('Marketing Department'),('Finance Department');
Create employee tabl ...
Added by Celadon on Fri, 04 Mar 2022 10:13:52 +0200
[read the Spring source code like this] - go to the container Spring IOC III again
In the last two articles, we have basically analyzed the application examples of XmlBeanFactory. In this chapter, let's analyze ApplicationContext. Big guy skip
The first two articles have finished the basic XmlBeanFactory operation examples. Let's talk about ApplicationContext here. As mentioned before, the basic processes of these two thin ...
Added by jrbissell on Fri, 04 Mar 2022 10:05:50 +0200
Programming model of parallel computing - Message Passing Interface (MPI)
Programming model of parallel computing - Message Passing Interface (MPI)
MPI is a standard and portable communication interface. MPI provides rich functional interfaces for parallel communication and parallel file I/O access. MPI is a programming model that supports multi presentation many data (MPMD). It is a library based system implemented ...
Added by eternalprophet on Fri, 04 Mar 2022 10:02:21 +0200
Golang rapid development framework - add static address directory, template directory and 404 pages
Golang rapid development framework - add static address directory, add template directory and 404 pages (V)backgroundThe Golang chapter of knowledge sharing is a record of all kinds of knowledge I learned when I use Golang everyday. I will sort it out and share it with you in the form of articles for common learning. We welcome your continued a ...
Added by eirikol on Fri, 04 Mar 2022 09:52:24 +0200
STL source code analysis Reading Note 4 (Sequence container list)
1, Overview
list and vector in the previous chapter are the most commonly used containers in our daily development. However, unlike vector, list is not an absolutely fixed container of continuous space. The reason why it is designed in this way is to consider the time consumption of deleting and inserting continuous space. STL list is a ...
Added by emma57573 on Fri, 04 Mar 2022 09:47:56 +0200
Experiment 6: memory paging
Experiment 5: memory paging
Corresponding book P199 page 5.2
1. Summary of relevant basic knowledge
Page directory page directory item page table page table item physical page virtual address physical address
Concept Brief Page directory entries and page table entries The lower 3 bytes are attributes. The upper 20 bits are physical address ...
Added by xenophobia on Fri, 04 Mar 2022 09:44:36 +0200
Dry goods! Teach you to use Python GUI framework to generate image extractor! WORD, PDF can use it!
preface:
Hello, everyone. Today I'll teach you to do a comprehensive Python practice: extracting pictures in PDF and Word with Python
To realize today's theme, we have to first involve a very common framework content GUI in Python. We have also talked about some development cases involving python GUI framework in our articles before; This ...
Added by daucoin on Fri, 04 Mar 2022 09:34:08 +0200