标签:sqlserver基础
1、数据分页
OFFSET:指定在从查询表达式中返回行之前,将跳过的行数。
FETCH:指定在OFFSET子句后,将返回的行数。
OFFSET是叶号的同义词,FRTCH则代表每页显示的行数。
select ProductID, ProductNumber, Name AS ProductName, ListPrice from Production.Product order by ProductID offset 0 rows fetch next 10 rows only
2、使用变量
声明变量:declare @variable int
三种赋值方法:可以使用SET关键字,这是最佳选择;也可以在SELECT语句中为变量分配一个值;还可以在声明变量的过程中为其赋值。
declare @variable int set @variable = <value>
select @variable = <column or expression> from <table name>
declare @variable int = <value>
本文出自 “夜那么深” 博客,请务必保留此出处http://lvhz94zm6.blog.51cto.com/9805380/1880099
标签:sqlserver基础
原文地址:http://lvhz94zm6.blog.51cto.com/9805380/1880099