In SPARQL, we can group the rows by a column through the gollowing syntax:
GROUP BY ?colName
Can we group by more than 1 columns eg:
GROUP BY (?colName1 + ?colName2 + ?colName3)
Suppose a query like:
Select ?a ?b ?c (MIN(?y) AS ?d)
Where {
....
}
GROUP BY (?a + ?b + ?c)
But this query does not work.