EF drop-down box filter information
EF drop-down box search Now let's finish the drop-down box query First, we still need to start creating the project Create an ASP Net application (. NET FrameWork) Then we need to create an empty project Click the first one As shown in the figure: When you finish creating these We need to create a class library First, we need to create three ...
Posted by jamesmage on Tue, 08 Feb 2022 06:14:07 +0100
[java learning path] (mysql) 003 Creation, deletion and constraint of limit and table in mysql
limit
limit action
Extract part of the query result set. It is usually used in paging queries
How does limit work?
Full usage: limit startIndex, length
startIndex Is the starting subscript, length Is the length.
The starting subscript starts at 0.
Default usage: limit 5; This is the top five.
Take out the top 5 employees in descend ...
Posted by Boo-urns on Mon, 07 Feb 2022 19:03:38 +0100
The basic syntax of MySQL is the syntax of creating tables and adding, deleting and modifying data in tables
Operation syntax of MySQL basic syntax on tables
This paper summarizes the syntax of adding, deleting and modifying data in tables in MySQL and the syntax of creating tables
Add data to the table (insert)
Adding data to a table can be done individually or in batches
Basic grammar
Add single
insert into Table name(field,field,fie ...
Posted by washbucket on Mon, 07 Feb 2022 12:28:59 +0100
4 integrity constraint naming clause 5.6 assertion
5.4 integrity constraint naming clause
Integrity constraint naming clause Constraint < integrity constraint name > < integrity constraint > ◾ < integrity constraints > include not null, unique, primary key phrase, foreign key phrase, check phrase, etc [example 5.1] establish a Student registration fo ...
Posted by iceraider on Fri, 04 Feb 2022 10:52:20 +0100
[Flink] reading notes of Flink source code (19) - Implementation of flow table Join in Flink SQL
1. General
Reprint: Reading notes of Flink source code (19) - Implementation of flow table Join in Flink SQL
In the process of data analysis using SQL, association query is often used. In traditional OLTP and OLAP fields, the data set of association query is bounded, so it can rely on caching bounded data set for query. However, in Streamin ...
Posted by rune_sm on Thu, 03 Feb 2022 00:38:27 +0100
Stored procedure and stored function
1, Stored procedure
1.1 overview of stored procedures
Stored Procedure is Stored Procedure in English. Its idea is very simple, which is the encapsulation of a set of precompiled SQL statements.
The stored procedure is stored on the MySQL server in advance. When it needs to be executed, the client only needs to issue a command to call the stor ...
Posted by fodder on Wed, 02 Feb 2022 23:15:32 +0100
mybatis study notes. Dynamic SQL, if, where, set, choose (when, otherwise), Foreach, SQL fragment explanation.
Dynamic SQL
Official documents:
https://mybatis.net.cn/dynamic-sql.html
What is dynamic SQL: dynamic SQL refers to generating different SQL statements according to different query conditions.
The SQL statements we wrote before are relatively simple. If there are complex businesses, we need to write complex SQL statements, which often ne ...
Posted by squariegoes on Wed, 02 Feb 2022 17:53:06 +0100
Mysql multi table relationship and connection query
Multi table relationship
One to many relationship
concept
The one to many relationship means that one row of data in the master table can correspond to multiple rows of data in the slave table at the same time. In turn, it means that multiple rows of data in the slave table point to the same row of data in the master table
Application scena ...
Posted by jester626 on Tue, 01 Feb 2022 21:31:32 +0100
mysql5.7. Detailed explanation of mysqldump in production environment
catalogue
Backup command: mysqldump
Example use
1. Export all database structures of the whole instance
2. Export data of a table under the database
3. Export a table structure in the database (excluding data)
4. Backup a single library without parameters (not recommended for production)
5. Use parameters to back up a single library ( ...
Posted by lm_a_dope on Tue, 01 Feb 2022 10:27:05 +0100
Calcite's PullUp rule
background
There is a bug in the previously designed tranform, which can be solved by raising the limit, so learn the rules raised on calculate. By the way, it also lays a foundation for the elimination of public expressions later.
rule
UnionPullUpConstantsRule
What did you do?
It is not difficult to see from the name that the constant ...
Posted by pk-uk on Tue, 01 Feb 2022 03:15:11 +0100