-
Notifications
You must be signed in to change notification settings - Fork 220
Open
Description
I'm trying to get a top type count for DBpedia (Virtuoso version 07.00.3207 on Linux (x86_64-redhat-linux-gnu), Single Server Edition):
select ?type count(distinct ?s) as ?c where {
?s a ?type.
}
group by ?type
order by desc(?c)
limit 50
returns (apart from other rows) this row 1:
http://dbpedia.org/ontology/Place 89498
Out of curiosity i checked this again with the query below:
select count(distinct ?s) where { ?s a <http://dbpedia.org/ontology/Place> }
tells me it's 754450 2
There's an order of magnitude difference in these 2 counts. Please tell me I'm doing it wrong.
PS: i tried the first query without the group by, order by and limit clause, doesn't make a difference.
akuckartz
Metadata
Metadata
Assignees
Labels
No labels