我刚刚发现了该TABLESAMPLE
子句,但令人惊讶的是它没有返回我指定的行数。
我使用的表有约 1400 万行,我想要一个 10000 行的任意样本。
select * from tabData TABLESAMPLE(10000 ROWS)
每次执行时,我得到的不是 10000,而是不同的数字(在 8000 到 14000 之间)。
这是怎么回事,我是否误解了 的预期目的TABLESAMPLE
?
编辑:
大卫的链接很好地解释了它。
这以一种有效的方式总是返回 10000 个大致随机的行:
select TOP 10000 * from tabData TABLESAMPLE(20000 ROWS);
并且该REPEATABLE
选项有助于始终保持不变(除非数据已更改)
select TOP 10000 * from tabData TABLESAMPLE(10000 ROWS) REPEATABLE(100);
因为我想知道使用TABLESAMPLE
大量行来确保(?)我得到正确的行号是否更昂贵,所以我测量了它;
1.循环(20次):
select TOP 10000 * from tabData TABLESAMPLE(10000 ROWS);
(9938 row(s) affected)
(10000 row(s) affected)
(9383 row(s) affected)
(9526 row(s) affected)
(10000 row(s) affected)
(9545 row(s) affected)
(9560 row(s) affected)
(9673 row(s) affected)
(9608 row(s) affected)
(9476 row(s) affected)
(9766 row(s) affected)
(10000 row(s) affected)
(9500 row(s) affected)
(9941 row(s) affected)
(9769 row(s) affected)
(9547 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(9478 row(s) affected)
First batch(only 10000 rows) completed in: 14 seconds!
2.循环(20次):
select TOP 10000 * from tabData TABLESAMPLE(10000000 ROWS);
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
(10000 row(s) affected)
Second batch(max rows) completed in: 13 seconds!
3.loop:使用 ORDER BY NEWID() 对 100% 随机行进行反检查:
select TOP 10000 * from tabData ORDER BY NEWID();
(10000 row(s) affected)
在持续23 分钟的一次执行后取消
结论:
令人惊讶的是,具有精确TOP
子句和大量 inTABLESAMPLE
的方法并不慢。因此,ORDER BY NEWID()
如果行不是每行随机而是每页级别无关紧要(表的每个 8K 页被赋予一个随机值),这是一个非常有效的替代方案。