Skip to content

Instantly share code, notes, and snippets.

@karenpayneoregon
Created May 28, 2021 01:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karenpayneoregon/f5d1c07e2a8109955d0490652be4c62b to your computer and use it in GitHub Desktop.
Save karenpayneoregon/f5d1c07e2a8109955d0490652be4c62b to your computer and use it in GitHub Desktop.
Select a single random product from NorthWind2020
SELECT TOP (1)
ProductName
FROM
NorthWind2020.dbo.Products
ORDER BY
NEWID();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment