如何在 ColdFusion 中将查询列转换为列表
我正在尝试将 ColdFusion 查询列转换为列表,最好的方法是什么?
我认为有一个内置函数可以让人们轻松地将查询的列转换为列表,如果有的话是什么?
I'm trying to convert ColdFusion query column to a list, what is the best way to do so?
I thought that there is a built in function that allows one to easily convert a query's column in to a list, if there is what is it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有一个内置函数可以做到这一点: ValueList
与所有列表函数一样,有一个可选的分隔符属性。
如果您需要列表中的值用双引号引起来,请使用 QuotedValueList。
There is a built-in function to do that: ValueList
As with all of the list functions, there's an optional delimiter attribute.
If you need the values in the list to have double-quotes around them, use QuotedValueList.
如果这适用于您想要执行的操作,您还可以直接将查询的列作为数组访问,无需任何转换:
或者
CF 查询对象实际上是列的关联数组...很奇怪,但有时很有用。
You can also access a query's columns as arrays directly without any conversion if that works for what you're trying to do:
or
A CF query object is really an associative array of columns... weird but occasionally useful.
在这样的情况下怎么样:
vs.
How about in a case like this:
vs.