mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
4 lines
228 B
SQL
4 lines
228 B
SQL
-- Creates statistics on the Date and Trip DateID columns to check join performance improvements
|
|
CREATE STATISTICS [dbo.Date DateID stats] ON dbo.Date (DateID);
|
|
CREATE STATISTICS [dbo.Trip DateID stats] ON dbo.Trip (DateID);
|