Project:SPARQL: Difference between revisions

From MaRDI portal
Created page with "This page is a repository of sparql queries that should work efficiently"
 
No edit summary
Line 1: Line 1:
This page is a repository of sparql queries that should work efficiently
This page is a repository of sparql queries that should work efficiently
=== All items with de number that do not contain a substring in the description ===
<syntaxhighlight lang="sparql">
SELECT ?item ?desc WHERE {
  ?item wdt:P1451 [] .
  ?item schema:description ?desc .
  FILTER(!CONTAINS(?desc, "zbMATH")) .
}
</syntaxhighlight>

Revision as of 10:19, 2 June 2025

This page is a repository of sparql queries that should work efficiently

All items with de number that do not contain a substring in the description

SELECT ?item ?desc WHERE {
  ?item wdt:P1451 [] .

  ?item schema:description ?desc .
  FILTER(!CONTAINS(?desc, "zbMATH")) .
}