Erlang:连接两个表不按相等模式

发布于 2024-10-29 13:50:10 字数 319 浏览 0 评论 0原文

有没有办法

SELECT *
FROM pattern p
  JOIN tag t ON t.tag LIKE CONCAT(p.pattern, '%') AND t.type = p.type

在两个 ets 之上以 erlang qlc 来实现:

  1. [{{Pattern, Type}, Id}]
  2. [{{Tag, Type}, Id}]

IE。不等式模式意味着标签以 Pattern 开头并且 Type = Type。

提前致谢。

Is there a way to implement

SELECT *
FROM pattern p
  JOIN tag t ON t.tag LIKE CONCAT(p.pattern, '%') AND t.type = p.type

in terms of erlang qlc on top of two ets:

  1. [{{Pattern, Type}, Id}]
  2. [{{Tag, Type}, Id}]

?

I. e. inequality pattern meaning Tag begins with Pattern and Type = Type.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜夜流光相皎洁 2024-11-05 13:50:10

很简单:

1> ets:new(a,[named_table]),[ets:insert(a,X) || X<-[{{"foo", bar},12},{{"baz", quux},11}]].
[true,true]
2> ets:new(b,[named_table]),[ets:insert(b,X) || X<-[{{"foobar", bar},12},{{"bazquux", quux},11},{{"fooxxx", bar},1},{{"bazbaz", baz},11}]].
[true,true,true,true]
3> qlc:e(qlc:q([{Pattern, Type1, Tag, Id1, Id2} || {{Pattern, Type1}, Id1} <- ets:table(a), {{Tag, Type2}, Id2} <- ets:table(b), Type1 =:= Type2, lists:prefix(Pattern, Tag)])).
[{"baz",quux,"bazquux",11,11},
 {"foo",bar,"foobar",12,12},
 {"foo",bar,"fooxxx",12,1}]

Pretty simple:

1> ets:new(a,[named_table]),[ets:insert(a,X) || X<-[{{"foo", bar},12},{{"baz", quux},11}]].
[true,true]
2> ets:new(b,[named_table]),[ets:insert(b,X) || X<-[{{"foobar", bar},12},{{"bazquux", quux},11},{{"fooxxx", bar},1},{{"bazbaz", baz},11}]].
[true,true,true,true]
3> qlc:e(qlc:q([{Pattern, Type1, Tag, Id1, Id2} || {{Pattern, Type1}, Id1} <- ets:table(a), {{Tag, Type2}, Id2} <- ets:table(b), Type1 =:= Type2, lists:prefix(Pattern, Tag)])).
[{"baz",quux,"bazquux",11,11},
 {"foo",bar,"foobar",12,12},
 {"foo",bar,"fooxxx",12,1}]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文