/****** Script for SelectTopNRows command from SSMS ******/ SET STATISTICS io ON SET STATISTICS time ON go SELECT * FROM [TestPrint] WHERE ID IN (1,2,3,4,5,6,7,8,9,10); go SET STATISTICS profile OFF SET STATISTICS io OFF SET STATISTICS time OFF go SE…