在orientdb中如何从数据集中选择任意5行

时间:2016-10-25 08:16:26

标签: orientdb

我的数据库类有1000行,当我触发查询时,我想要它每次点击时应该给我任意5行,可以是也可以不是唯一的。

我需要在查询中添加什么?

2 个答案:

答案 0 :(得分:2)

您可以使用这个简单的JavaScript函数,该函数将从v获取所有记录并随机返回5:

var g=orient.getDatabase(); 
var b=g.query("select from v");
var result = [];
for(i=1;i<=5;i++){
   item=b[Math.floor(Math.random()*b.length)]
   result.push(item);
}
return result;

您可以使用以下方式查询结果:

select expand(result) from (select randomFunc() as result)

查看Studio中的屏幕截图:

enter image description here enter image description here

希望它会对你有所帮助。

答案 1 :(得分:1)

不,目前没有随机功能。 你可以看到这个link

希望它有所帮助。