--TOP SELECT TOP(10) * FROM saleslt.product ORDER BY listprice --TOP PERCENT EXAMPLE SELECT TOP(5) PERCENT * FROM saleslt.product ORDER BY listprice SELECT TOP(3) PERCENT WITH TIES * FROM saleslt.product ORDER BY listprice SELECT TOP(3) WITH TIES * FROM saleslt.product ORDER BY listprice
morek3333