Home > Backend Development > PHP Tutorial > Paging query support provided by SQL Server 2005_PHP tutorial

Paging query support provided by SQL Server 2005_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 17:02:57
Original
796 people have browsed it

Just saw it today, didn't test the performance.
SELECT *
FROM (select ROW_NUMBER() Over(order by CreditCardID) as rowNum, *
from Sales.CreditCard) as table
where rowNum> 0 and rowNum<50


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/630990.htmlTechArticleJust saw it today, no performance test. SELECT * FROM (select ROW_NUMBER() Over(order by CreditCardID) as rowNum, * from Sales.CreditCard) as table where rowNum 0 and rowNum50...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
sql file
From 1970-01-01 08:00:00
0
0
0
php - Overhead of prepare vs sql?
From 1970-01-01 08:00:00
0
0
0
Print sql statement
From 1970-01-01 08:00:00
0
0
0
Pass array to SQL insert query using PHP
From 1970-01-01 08:00:00
0
0
0
sql optimization or
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template