show/hide this revision's text 3 Rollback to Revision 1

A less known TSQL technique for returning rows in random order:

-- Return rows in a random order
SELECT 
    SomeColumn 
FROM 
    SomeTable
ORDER BY 
    NEWID(CHECKSUM(NEWID())
show/hide this revision's text 2 Checksum not required.

A less known TSQL technique for returning rows in random order:

-- Return rows in a random order
SELECT 
    SomeColumn 
FROM 
    SomeTable
ORDER BY 
    CHECKSUM(NEWID()NEWID()
    Post Made Community Wiki by Community
show/hide this revision's text 1