仅从 mnesia 中选择一列
我怎样才能从 mnesia 中只选择一列? 我可以使用以下代码选择 ets 表中的唯一列:
ets:match(AllData_TableId, {'_', '$1','_',','_'},3),
我需要类似的 mnesia。
谢谢。
how can i select only one column from mnesia?
I can select onle column in ets table with this code:
ets:match(AllData_TableId, {'_', '$1','_',','_'},3),
I need something similar for mnesia.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在此处找到的示例中:http://en.wikibooks.org/wiki/Erlang_Programming/ using_mnesia,看看作者如何使用函数
mnesia:match_object/1
,考虑在这里多读一下http://www.erlang.org/doc/man/mnesia.html#match_object -1但是,建议我们设计 mnesia 数据库和/或表以避免使用此方法。这是因为它使 mnesia 遍历整个表来寻找匹配项。
你需要的是qlc
In the examples found here: http://en.wikibooks.org/wiki/Erlang_Programming/Using_mnesia, look at how the author uses the function
mnesia:match_object/1
, and the consider reading it here more http://www.erlang.org/doc/man/mnesia.html#match_object-1However, we are advised to design our mnesia databases and/or tables in a way to avoid the use of this method. This is because it makes mnesia traverse the entire table looking for a match.
What you need is qlc
您可以使用
mnesia:select
来实现:You can use
mnesia:select
for that: