According to the official W3C documentation ,
AT
boolean rdfTerm IN (expression, ...)
The IN statement checks whether the RDF member on the left is in the values of the expression list on the right. The test is performed using the operator "=", which checks the same value determined by the display of the operator.
.
, IN , RDF .
IN SPARQL:
(lhs = expression1) || (lhs = 2) ||...
< > :

, IN . , SPARQL FILTER + IN:
SELECT ?s1
WHERE
{
?s1 rdf:type dbpedia-owl:Scientist.
FILTER (?s1 IN (<http://example.com/
}