You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
该问题不是double类型过滤问题,是语法错误问题。在MATCH p=(n:N100{name:"苏宁易购集团股份有限公司"})-[r:A01001..2]->() where r.ratio>0.1 RETURN p limit 5语句中,[r:A01001..2]可能存在多条边的情况,这与0.1无法比较。可以使用MATCH p=(n:N100{name:"苏宁易购集团股份有限公司"})-[r:A0100]->() where r.ratio>0.1 RETURN p limit 5语句。
A0100边上的ratio是double类型。数据看着有超过double精度的,正常导入了。但是在用这个属性过滤时符合条件的却没有返回
如下图
The text was updated successfully, but these errors were encountered: