@elisha_langworth
In SPARQL, the equals relation can be expressed using the "=". Here's an example query that expresses the equals relation:
1 2 3 4 5 6 |
SELECT ?s WHERE { ?s rdf:type dbo:Person . ?s dbo:age ?age FILTER (?age = 30) } |
In this query, we are selecting all the persons who have an age of 30. The equals relation is used in the FILTER clause to specify the condition that the age of the person should be equal to 30.