- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 SPARQL 的新手,遇到了一些我不理解的有趣行为。
所以我有四个基因:
a-gene
b-gene
c-gene
d-gene
和两个菌株:
strain1
strain2
和以下三元组:
strain1 hasGene a-gene
strain1 hasGene b-gene
strain1 hasGene d-gene
strain2 hasGene b-gene
strain2 hasGene d-gene
我的目标是创建一个 SPARQL 查询,为所有菌株的 hasBinary
属性添加一个值,其中 hasBinary
是菌株具有的基因的相应二进制文件,并且没有。例如:
strain1 hasBinary 1101
strain2 hasBinary 0101
strain1
有基因a-gene
, b-gene, d-gene
,但没有c-gene
>。给定查询(注意菌株和基因分别属于菌株和基因类):
select ?s (group_concat(?result ; separator="") as ?binary)
where { ?g a Gene.
?s a Strain.
optional{?s ?hasGene ?g.}.
bind((if(bound(?hasGene), "1","0")) as ?result). }
group by ?s
order by ?s
输出是:
strain1 1101
strain2 0101
这是正确的。但是当我查询时:
construct {?s hasBinary ?binary}
where{
select ?s (group_concat(?result ; separator="") as ?binary)
where { ?g a Gene.
?s a Strain.
optional{?s ?hasGene ?g.}.
bind((if(bound(?hasGene), "1","0")) as ?result).
}
group by ?s
order by ?s
}
输出是:
strain1 hasBinary 0111
strain2 hasBinary 0011
这是完全错误的。就好像 group_concat
正在对结果进行排序。我不知道为什么要这样做,二进制文件如果被订购就没用了。对此问题的任何帮助将不胜感激。
最佳答案
据我所知,您的查询是正确的,您观察到的问题是您使用的任何 SPARQL 引擎中的一个错误。或者至少:当我在芝麻商店(版本 2.8.8)上尝试您的案例时,它给了我预期的结果。
编辑 我得到正确结果的原因是芝麻恰好以预期的顺序返回结果,但正如@TallTed 正确指出的那样,这实际上不是由查询强制执行的,所以这不是什么你可以依赖。所以我之前断言这是端点中的错误是错误的。
让我们稍微探讨一下。
我使用的数据:
@prefix : <http://example.org/> .
:a-gene a :Gene .
:b-gene a :Gene .
:c-gene a :Gene .
:d-gene a :Gene .
:strain1 a :Strain .
:strain2 a :Strain .
:strain1 :hasGene :a-gene .
:strain1 :hasGene :b-gene .
:strain1 :hasGene :d-gene .
:strain2 :hasGene :b-gene .
:strain2 :hasGene :d-gene .
如果我们看一下最简单的查询形式,我们想要返回所有 ?s
和所有 ?g
,其中可选地有一个 :hasGene
关系,我们希望它们按顺序排列。您最初的查询基本上是这样的:
PREFIX : <http://example.org/>
select ?s ?g
where { ?g a :Gene.
?s a :Strain.
optional { ?s ?hasGene ?g } .
}
order by ?s
现在,这个查询在我的 Sesame 商店(以及您的端点)中返回:
?s ?g
<http://example.org/strain1> <http://example.org/a-gene>
<http://example.org/strain1> <http://example.org/b-gene>
<http://example.org/strain1> <http://example.org/c-gene>
<http://example.org/strain1> <http://example.org/d-gene>
<http://example.org/strain2> <http://example.org/a-gene>
<http://example.org/strain2> <http://example.org/b-gene>
<http://example.org/strain2> <http://example.org/c-gene>
<http://example.org/strain2> <http://example.org/d-gene>
看起来不错吧?全部按字母数字顺序排列。但重要的是要认识到此处 ?g
列的顺序是巧合。如果引擎返回了这个:
?s ?g
<http://example.org/strain1> <http://example.org/c-gene>
<http://example.org/strain1> <http://example.org/b-gene>
<http://example.org/strain1> <http://example.org/a-gene>
<http://example.org/strain1> <http://example.org/d-gene>
<http://example.org/strain2> <http://example.org/b-gene>
<http://example.org/strain2> <http://example.org/a-gene>
<http://example.org/strain2> <http://example.org/c-gene>
<http://example.org/strain2> <http://example.org/d-gene>
...它也应该是一个有效的结果——毕竟,我们的查询没有任何地方说 ?g
应该被排序。
然而,解决方案很简单:对 ?s
和 ?g
都进行排序。由于在我们特定的 SPARQL 端点中,正确的顺序已经“巧合地”返回,即使没有这个,我们可以通过一个小技巧来验证它是否有效:使用 DESC
运算符恢复顺序。
查询:
PREFIX : <http://example.org/>
SELECT ?s ?g
WHERE { ?g a :Gene.
?s a :Strain.
OPTIONAL { ?s ?hasGene ?g } .
}
ORDER BY ?s DESC(?g)
结果:
?s ?g
<http://example.org/strain1> <http://example.org/d-gene>
<http://example.org/strain1> <http://example.org/c-gene>
<http://example.org/strain1> <http://example.org/b-gene>
<http://example.org/strain1> <http://example.org/a-gene>
<http://example.org/strain2> <http://example.org/d-gene>
<http://example.org/strain2> <http://example.org/c-gene>
<http://example.org/strain2> <http://example.org/b-gene>
<http://example.org/strain2> <http://example.org/a-gene>
您可以看到 ?g
列现在实际上是按字母倒序排列的(这当然与您想要的相反,但是只需省略 DESC< 即可轻松纠正
稍后查询的一部分 - 关键是我们通过这种方式验证了它是 我们的查询 进行排序,而不是我们使用的任何端点)。
虽然它仍然不能完全解决二进制字符串中的排序问题。由于在您的原始查询中 BIND
发生在 排序之前(因为绑定(bind)是图形模式的一部分,它在结果排序发生之前得到全面评估), ORDER BY
子句对此没有影响。也就是说,如果我们简单地执行此查询:
PREFIX : <http://example.org/>
SELECT ?s (GROUP_CONCAT(?result ; SEPARATOR="") as ?binary)
WHERE { ?g a :Gene.
?s a :Strain.
OPTIONAL { ?s ?hasGene ?g } .
BIND((IF(BOUND(?hasGene), "1","0")) AS ?result).
}
GROUP BY ?s
ORDER BY ?s DESC(?g)
我们仍然得到这个结果:
?s ?binary
<http://example.org/strain1> "1101"
<http://example.org/strain2> "0101"
换句话说,我们的二进制字符串仍然没有反转,这是应该的。
解决方案是引入一个进一步的子查询,它将所需的结果传递给它的外部查询,然后连接这个有序的结果以创建二进制字符串,如下所示:
PREFIX : <http://example.org/>
SELECT ?s (GROUP_CONCAT(?result ; SEPARATOR="") as ?binary)
WHERE {
{ SELECT ?s ?hasGene
WHERE { ?g a :Gene.
?s a :Strain.
OPTIONAL {?s ?hasGene ?g.}.
}
ORDER BY ?s DESC(?g)
}
BIND((IF(BOUND(?hasGene), "1","0")) AS ?result).
}
GROUP BY ?s
结果是:
?s ?binary
<http://example.org/strain1> "1011"
<http://example.org/strain2> "1010"
如您所见,查询现在强制执行正确的(倒置的)二进制字符串。然后我们需要将整个野兽输入到您想要的 CONSTRUCT
查询中,最后我们需要取出二进制字符串的反转。
然后完整的查询变成这样:
查询 2:
PREFIX : <http://example.org/>
CONSTRUCT {?s :hasBinary ?binary }
WHERE {
SELECT ?s (GROUP_CONCAT(?result ; SEPARATOR="") as ?binary)
WHERE {
{ SELECT ?s ?hasGene
WHERE { ?g a :Gene.
?s a :Strain.
OPTIONAL {?s ?hasGene ?g.}.
}
ORDER BY ?s ?g
}
BIND((IF(BOUND(?hasGene), "1","0")) AS ?result).
}
GROUP BY ?s
}
结果:
<http://example.org/strain1> <http://example.org/hasBinary> "1101" .
<http://example.org/strain2> <http://example.org/hasBinary> "0101" .
关于aggregate - Sparql group_concat - 停止排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34796235/
我正在尝试对每个条目有多个值的关联数组进行排序。 例如 [0] => stdClass Object ( [type] => node [sid] => 158 [score] => 0.059600
我在 mysql 中有“日期”列以这种格式保存日期 2014 年 9 月 17 日(日-月-年) 我需要对它们进行升序排序,所以我使用了这个命令: SELECT * FROM table ORDER
我目前正在将 MySQL 存储过程重写为 MS SQL 存储过程,但遇到了问题。 在 MySQL 存储过程中,有一个游标,它根据最近的日期 (effdate) 选择一个值并将其放入变量 (thestt
我想要 gwt r.QuestionId- 排序。但是我得到未排序的 QuestionId 尽管我提到了 QuestionId ASC 的顺序。 SELECT r.QuestionId,
我有一个关于在 scandir 函数中排序的基本问题。到目前为止,我阅读了 POSIX readdir 的手册页,但没有找到有关订购保证的具体信息。 但是当我遍历大目录(无法更改,只读)时,我在多个系
基本上我必须从 SQL 数据库中构建项目列表,但是用户可以选择对 7 个过滤器的任意组合进行过滤,也可以选择要排序的列以及按方向排序。 正如您可以想象的那样,这会以大量不同的组合进行编码,并且数据集非
我有两张 table 。想象第一个是一个目录,包含很多文件(第二个表)。 第二个表(文件)包含修改日期。 现在,我想选择所有目录并按修改日期 ASC 对它们进行排序(因此,最新的修改最上面)。我不想显
我想先根据用户的状态然后根据用户名来排序我的 sql 请求。该状态由 user_type 列设置: 1=活跃,2=不活跃,3=创始人。 我会使用此请求来执行此操作,但它不起作用,因为我想在“活跃”成员
在 C++ 中,我必须实现一个“类似 Excel/Access”(引用)的查询生成器,以允许对数据集进行自定义排序。如果您在 Excel 中使用查询构建器或 SQL 中的“ORDER BY a, b,
我面临这样的挑战: 检索按字段 A 排序的文档 如果字段 B 存在/不为空 . 否则 按字段排序 C. 在 SQL 世界中,我会做两个查询并创建一个 UNION SELECT,但我不知道如何从 Mon
我想对源列表执行以下操作: map 列表 排序 折叠 排序 展开 列表 其中一些方法(例如map和toList)是可链接的,因为它们返回非空对象。但是,sort 方法返回 void,因为它对 List
我制作了一个用于分析 Windows 日志消息编号的脚本。 uniq -c 数字的输出很难预测,因为根据数字的大小会有不同的空白。此时,我手动删除了空白。 这是对消息进行排序和计数的命令: cat n
我有以下词典: mydict1 = {1: 11, 2: 4, 5: 1, 6: 1} mydict2 = {1: 1, 5: 1} 对于它们中的每一个,我想首先按值(降序)排序,然后按键(升序)排序
我刚刚开始使用泛型,目前在对多个字段进行排序时遇到问题。 案例: 我有一个 PeopleList 作为 TObjectList我希望能够通过一次选择一个排序字段,但尽可能保留以前的排序来制作类似 Ex
有没有办法在 sql 中组合 ORDER BY 和 IS NULL 以便我可以在列不为空时按列排序,但如果它为null,按另一列排序? 最佳答案 类似于: ORDER BY CASE WHEN
我有一个包含 2 列“id”和“name”的表。 id 是常规的自动增量索引,name 只是 varchar。 id name 1 john 2 mary 3 pop 4 mary 5 j
场景 网站页面有一个带有分页、过滤、排序功能的表格 View 。 表中的数据是从REST API服务器获取的,数据包含数百万条记录。 数据库 REST API 服务器 Web 服务器 浏览器 问
假设我有一本字典,其中的键(单词)和值(分数)如下: GOD 8 DONG 16 DOG 8 XI 21 我想创建一个字典键(单词)的 NSArray,首先按分数排序,然后按字
如何在 sphinx 上通过 sql 命令选择前 20 行按标题 WEIGHT 排序,接下来 20 行按标题 ASC 排序(总共 40 个结果),但不要给出重复的标题输出。 我尝试了这个 sql 命令
我有一个奇怪的问题,当从 SQLite 数据库中选择信息并根据日期排序时,返回的结果无效。 我的SQL语句是这样的: Select pk from usersDates order by dateti
我是一名优秀的程序员,十分优秀!