如何在 SQL Server 2005 Express 中排除第一行
我想从 SQL Server 2005 Express 数据库中排除第一行的显示...我该如何执行此操作?
我知道如何仅返回顶行,但如何返回除顶行之外的所有行
I want to exclude the first row from displaying from a SQL Server 2005 Express database... how do I do this?
I know how to return just the top row, but how do I return all rows, except the top row
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
当您说您不想要顶行时,我假设您有某种
order by
来定义哪一行位于顶部。此示例使用ID
列来执行此操作。When you say you don't want the top row I assume you have some kind of
order by
that defines which row is at the top. This sample uses theID
column to do that.