SQL Server ResultSet Random
;with todos as ( select top(100) IdProduto ,Nome ,PalavraChave ,(ABS(CAST(BINARY_CHECKSUM(*) * RAND() as int))% 100) as rnd from Produto ) select * from todos;