Skip to content

Instantly share code, notes, and snippets.

@harsha547
Created December 19, 2016 09:55
Show Gist options
  • Select an option

  • Save harsha547/6c706ba74a41b2e2595572e85b483f39 to your computer and use it in GitHub Desktop.

Select an option

Save harsha547/6c706ba74a41b2e2595572e85b483f39 to your computer and use it in GitHub Desktop.
Top ten youngest players in Indian Premier League Database
-- Top ten youngest players in Indian Premier League Database
SELECT TOP 10 Player_ID , Player_Name , FORMAT(DOB,'dd,MMMM,yyyy') AS 'Date_Of_Birth'
FROM Player
ORDER BY DOB DESC
@harsha547
Copy link
Copy Markdown
Author

RESULT 👍

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment