Skip to content

Instantly share code, notes, and snippets.

@gdoddsy
Last active October 2, 2018 21:39
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 gdoddsy/64827dd44257791b19666d156dab7fd1 to your computer and use it in GitHub Desktop.
Save gdoddsy/64827dd44257791b19666d156dab7fd1 to your computer and use it in GitHub Desktop.
SELECT Posts.Title,acceptedAnswer.CreationDate
FROM dbo.Posts
LEFT JOIN dbo.Posts AS acceptedAnswer
ON acceptedAnswer.Id = Posts.AcceptedAnswerId
WHERE Posts.PostTypeId = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment