Getting started with python django getting started with models operation
I have 10 years of java development experience and now work in Telecom. I need to learn python and record my learning records. Later, we will continue to share real work experience and projects. Welcome to learn from each other!! Please point out that the article is not rigorous
1. Create a model class
Open models.py of the pay application to ...
Posted on Tue, 16 Nov 2021 20:29:33 -0500 by ethan89
Oracle developer intermediate Lesson 8 (Merge) experiment
summary
This experiment refers to the in DevGym Experimental guide.
Create environment
create table bricks_for_sale (
colour varchar2(10),
shape varchar2(10),
price number(10, 2),
primary key ( colour, shape )
);
create table purchased_bricks (
colour varchar2(10),
shape varchar2(10),
price number(10, 2),
pr ...
Posted on Tue, 16 Nov 2021 11:24:25 -0500 by jstngk
No, you can't do this. It's the end ------ sql and cache
🏇
wow
Click
Click
:
\textcolor{blue} {wow, Kaka:}
Wow, Kaka:
ancient
...
Posted on Fri, 12 Nov 2021 18:02:37 -0500 by sw0o0sh
In N days, I will take you to brush the full records of LeetCode's SQL question bank [Medium]
I really hope that if B-tree feels that it has not performed well in LeetCode's SQL practice so far, it is necessary to take a look at the handbook of Advanced SQL statements. At present, I have stopped to watch it twice. Because I was blinded by the SQL statement logic show taught by the data warehouse last week, I think it is possible to b ...
Posted on Fri, 12 Nov 2021 14:13:07 -0500 by jeffshead
MySQL - expressions and functions
expression
Those who have studied primary school mathematics should know that the combination of numbers and operators is called an expression, for example:
1 + 1
5 * 8
We can call the numbers in it operands, and the operators can be called operators. In particular, a single operand can also be regarded as a special expression.
There is al ...
Posted on Fri, 12 Nov 2021 04:24:48 -0500 by CodeBuddy
MySQL foundation - simple query
For simplicity, we will reuse the student information table previously created under the database xiaohaizi_ Info and student transcript_ Score, you may have forgotten what these two tables look like. Let's review the structure of the two tables first:
Structure of students' basic information table
CREATE TABLE student_info (
number INT P ...
Posted on Thu, 11 Nov 2021 17:01:04 -0500 by hbalagh
Summary of manual SQL injection
Although there are many artifacts about sql Injection on the Internet, in this era of WAF, manual injection is often particularly important in some real environments. This article mainly talks about the knowledge learned before. Please correct the deficiencies.
0x01 Mysql manual injection
1.1 combined injection
?id=1' order by 4--+?id=0' uni ...
Posted on Thu, 11 Nov 2021 00:29:27 -0500 by engkeb0i
. NET Core database transaction evolution Usage Summary
Transaction is an important concept in database system. In this paper, the author explains the summary of various usage modes of transaction in CRUD for more than ten years.
All the following contents are for stand-alone transactions and do not involve things related to distributed transactions!
The explanation of transaction principle is no ...
Posted on Thu, 11 Nov 2021 00:27:51 -0500 by Denness
Chapter 72 SQL command SELECT
Chapter 72 SQL command SELECT (4)
WHERE clause
The WHERE clause qualifies or deselects specific rows in the query. The qualified rows are those whose conditional expression is true. Conditional expressions are lists of logical tests (predicates) that can be linked through AND and OR logical operators. These predicates can be inver ...
Posted on Wed, 10 Nov 2021 22:50:24 -0500 by mesh2005
Activiti6 Task query API mapping SQL
1, Foreword
Activiti itself provides a set of user management, but the business system itself has a set of user management system in development. At this time, some user data in the business system should be synchronized to activiti user table management. So what if it's not synchronized? At first, many developers thought that there must b ...
Posted on Wed, 10 Nov 2021 04:03:01 -0500 by plapeyre