Introduction
TABLESAMPLE helps you get a small random part of a big table quickly. It saves time when you don't need all data.
You want to test queries on a small random set instead of the whole table.
You need a quick estimate of data without scanning everything.
You want to create a sample dataset for training a model.
You want to check data quality by looking at random rows.
You want to speed up reports by using a sample instead of full data.