我有以下 sparql 查询(来自本书,语义网入门):
select ?n
where
{
?x rdf:type uni:Course;
uni:isTaughtBy :949352
?c uni:name ?n .
FILTER(?c=?x) .
}
在这种情况下,我猜这段代码与以下代码相同:
Select ?n
Where
{
?x rdf:type uni:course;
uni:isTaughtBy :949352 .
?x uni:name ?n .
}
此查询是否会导致编码错误?