MySQL Oracle and SQL Server paging query example analysis

MySQL Oracle and SQL Server paging query example analysis

Recently, I have done a simple study on the data paging query of Oracle, MySQL, and SQL Server 2005, and posted the query statements of each for everyone to learn...

(I) Paging query of MySQL

MySQL's paging query is the simplest. You can use the keyword limit to query. The general query statement is:

select o.*from(sql) o limit firstIndex,pageSize

As shown in the following screenshot, the number of records displayed per page is 20:

Query (1-20) these 20 records

Query these 20 records (21-40)


MySQL paging query is so simple...

(II) Paging query of sqlserver2005

Before SQL Server 2005, the top keyword was used to implement paging query, but the efficiency was low. In SQL Server 2005 and later versions, the row_number() analytical function is used to complete paging query, which has greatly improved the efficiency. However, the SQL statement is more complicated. The general formula of paging query is given below:

selecttoppageSizeo.*from(selectrow_number()over(orderbyorderColumn)asrownumber,*from(sql)asowhererownumber>firstIndex;

Look at the screenshot below, 20 records are displayed per page:

Query (1-20) these 20 records

Query these 20 records (21-40)

Knowing the row_number function in sqlserver, paging is easy...

(III) Oracle paging query

Next, let's focus on Oracle's paging query. Oracle has relatively more paging query methods, ROWNUM and row_number(). Today we will mainly focus on two paging query statements with slightly better efficiency.

①ROWNUM query paging formula:

select*from(selecta.*,ROWNUMrn from(sql)a whereROWNUM<=(firstIndex+pageSize))wherern>firstIndex

The following screenshot shows a query executed in this way:

Query (1-21) these 20 records***** (there is no record with ID=6, so the maximum ID queried is 21)



Query (22-41) these 20 records***** (there is no record with ID=6, so the first ID to be queried is 22, and the maximum ID is 41)

②row_number() parsing function paging query method:

select*from(select*from(selectt.*,row_number()over(orderbyorderColumn)asrownumberfrom(sql)t) p wherep.rownumber>firstIndex)whererownum<=pageSize

The following screenshot shows the paging query effect using row_number():

Query (1-21) these 20 records***** (there is no record with ID=6, so the maximum ID queried is 21)



Query (22-41) these 20 records***** (there is no record with ID=6, so the first ID to be queried is 22, and the maximum ID is 41)


In the ROWNUM query method, there is a " where ROWNUM<(firstIndex+pageSize)order by idasc in the second-level SQL statement, which queries (firstIndex+pageSize) records from the data table. So if this value is very small, the efficiency will be very good. If this value is thousands for a large data form, for example: select* from wyuse where rownum<(5000) order by idasc , 5000 records will be selected at the beginning, and the efficiency will naturally be much slower....

Summarize

The above is the introduction of MySQL Oracle and SQL Server paging query by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Solution to the paging error problem of MySQL one-to-many association query
  • MySQL million-level data paging query optimization solution
  • Optimizing the performance of paging query for MySQL with tens of millions of data
  • Detailed explanation of MySQL limit usage and performance analysis of paging query statements
  • Detailed explanation of Mysql Limit paging query optimization
  • Introduction to the differences between paging query statements in Oracle, MySQL and SqlServe
  • Detailed explanation of paging query methods in mysql, mssql and oracle
  • Comparison of two solutions for paging query in MySQL
  • Examples of paging queries for three databases: oracle, mysql, and SqlServer
  • Several implementation methods and advantages and disadvantages of SQL paging query in MySQL

<<:  How to use JSZip compression in CocosCreator

>>:  Tomcat uses Log4j to output catalina.out log

Recommend

Summary of Common Commands for Getting Started with MySQL Database Basics

This article uses examples to describe the common...

Troubleshooting and solutions for MySQL auto-increment ID oversize problem

introduction Xiao A was writing code, and DBA Xia...

jQuery plugin to implement minesweeper game (2)

This article shares the second article of using j...

Sample code for deploying Spring-boot project with Docker

1. Basic Spring-boot Quick Start 1.1 Quick start ...

A brief discussion on React Component life cycle functions

What are the lifecycle functions of React compone...

Getting Started Tutorial on GDB in Linux

Preface gdb is a very useful debugging tool under...

JavaScript simulation calculator

This article shares the specific code of JavaScri...

Add crontab scheduled tasks to debian docker container

Now most of the Docker images are based on Debian...

404 error occurs when accessing the homepage of tomcat started in Docker mode

Scenario: When starting tomcat in docker (version...

How to manually deploy war packages through tomcat9 on windows and linux

The results are different in Windows and Linux en...

Does MySql need to commit?

Whether MySQL needs to commit when performing ope...

Detailed explanation of CSS sticky positioning position: sticky problem pit

Preface: position:sticky is a new attribute of CS...