我正在尝试从数据库中获取符合我条件的对象列表。
这是我的数据库:
student(1234,[statistics/a,algorithms/b,prolog/a,infi/b]). student(4321,[java/a,algorithms/a,prolog/b,probability/b,infi/a]). student(1111,[algorithms/a,prolog/a,c/a,infi/a]). student(2222,[c/b,algorithms/b,prolog/b,infi/a]). student(3333,[java/b,algorithms/b,prolog/a,infi/a]). student(4444,[java/a,c/a,prolog/a]). student(5555,[java/a,c/a,prolog/b,infi/b]). student(6666,[java/a,c/a,prolog/b,infi/b,probability/b,algorithms/b]).
我写了一个谓词来查询哪个学生在附加到他的列表中有一个字符串:“infi/a”
findall(Ns,(student(Id,List),subset([infi/a],List)),L1)
问题是 L1 没有向我返回如下列表:
L1 = [student(2222,[c/b,algorithms/b,prolog/b,infi/a]), student(1111,[algorithms/a,prolog/a,c/a,infi/a]) etc...]
它返回:
L1 = [_G2044, _G2041, _G2038, _G2035].
为什么会发生这种情况,我该如何解决?