Randomly Select Data Rows From Sql Database
If your requirement is to select random records from SQL database, you can do with the help of below sql statement
select top 1* from tableName order by NEWID()
select top 1* from tableName order by NEWID()
Comments