应该是with ties吧?with ties指定从基本结果集中返回额外的行,对于 order by 列中指定的排序方式参数,这些额外的返回行的该参数值与 top n (percent) 行中的最后一行的该参数值相同。只能在 select 语句中且只有在指定了 order by 子句之后,才能指定 top...with ties。注意:返回的记录关联顺序是任意的。order by 不影响此规则。例如:“从100万条记录中的得到成绩最高的记录”。通常用:select top 1 * from student order by score desc但是如果有几个人分数并列第一,这样就只能取到一个记录。用下面的代码的话,就可以正确地取出分数第一的所有记录:select top 1 with ties * from student order by score desc 20210311