有没有办法在avg语句的查询查询中舍入到2位小数?我在adobe docs中找不到系统函数。
答案 0 :(得分:4)
不在QoQ,没有。 QoQ的完整文档在这里:“Query of Queries user guide”。这包括QoQ的全部功能。
当你使用记录集时,你只需要进行舍入。
可能值得在错误跟踪器上提高票证以获得增强功能:https://bugbase.adobe.com/。这是我过去需要的功能。
答案 1 :(得分:1)
I needed to do a similar thing to use the QoQ result in a chart. I ended up using the QuerySetCell to format the QoQ column.
In the example code below, qryResult was my QoQ query name and MWDPCT was the column that I wanted to reformat.
<cfloop query="qryResult">
<cfset temp = QuerySetCell(qryResult,"MWDPCT", decimalFormat(qryResult.MWDPCT),currentrow)>
</cfloop>
Hope that helps a bit.