如何在没有临时表的 SQL 查询中为组添加序列号
我在 SQL 2008 中创建了一个复杂的搜索查询,它返回按组排序的数据,并且该查询本身具有分页和排序功能,但它不是根据分页选项返回一组记录,而是需要返回一个设置组数(因此记录数会有所不同)。
我目前正在通过使用临时表来执行此操作(第一个临时表创建将在搜索中选择的组列表,然后对它们进行编号...第二个查询将此表连接到实际的组搜索...因此,它最终会运行搜索查询两次)。
我正在寻找一种更有效的方法,使用 SQL 2008 中的一些新函数(不需要使用临时表)来完成此操作。
如果我能以这样的格式获取数据,我就会...
Record Group GroupSequence -------|---------|-------------- 1 Chickens 1 2 Chickens 1 3 Cows 2 4 Horses 3 5 Horses 3 6 Horses 3
关于如何在 SQL 2008 中使用单个查询来完成此操作而不使用临时表的任何想法?
I've created a complex search query in SQL 2008 that returns data sorted by groups, and the query itself has paging and sorting functions in it, but rather than returning a set number of records based on the paging options, it needs to return a set number of groups (so the number of records will vary).
I'm currently doing this through the use of Temp Tables (the first temp table creates a list of the Groups that will be selected as part of the search, and then numbers them... and the second query joins this table to the actual search... so, it ends up running the search query twice).
What I'm looking for is a more efficient way to do this using some of the new functions in SQL 2008 (which wouldn't require the use of temp tables).
If I can get the data in a format like this, I'd be set...
Record Group GroupSequence -------|---------|-------------- 1 Chickens 1 2 Chickens 1 3 Cows 2 4 Horses 3 5 Horses 3 6 Horses 3
Any ideas on how to accomplish this with a single query in SQL 2008, without using temp tables?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
示例数据
查询
输出
Sample data
Query
Output
如果没有有关您拥有的表的更多详细信息,我建议您查看 CTE 查询和 row_number 函数...大致如下:
Without more details about the tables you have, I'd say look into CTE queries and the row_number function... something along the lines of: