gpt4 book ai didi

sql - 选择除顶行之外的所有行

转载 作者:行者123 更新时间:2023-12-02 13:59:30 25 4
gpt4 key购买 nike

如何返回表中除第一行之外的所有行。这是我的sql语句:

Select Top(@TopWhat) * 
from tbl_SongsPlayed
where Station = @Station
order by DateTimePlayed DESC

如何更改 SQL 语句以返回除第一行之外的所有行。

非常感谢

最佳答案

SQL 2012 还有相当方便的 OFFSET 子句:

Select Top(@TopWhat) *
from tbl_SongsPlayed
where Station = @Station
order by DateTimePlayed DESC
OFFSET 1 ROWS

关于sql - 选择除顶行之外的所有行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15032803/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com