Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save danielhmills/45cf502a5929c8268e094837dfa0505a to your computer and use it in GitHub Desktop.
Save danielhmills/45cf502a5929c8268e094837dfa0505a to your computer and use it in GitHub Desktop.
Cleansing Date Column w/ DATATYPE()
SELECT *
WHERE
{
?s dbp:birthDate ?birth.
FILTER(DATATYPE(?birth) = xsd:date)
}
LIMIT 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment