mysql中字符串和Avg函数的联合显示了一些垃圾值

时间:2016-11-09 16:26:33

标签: mysql sql

Mysql SQL Quires and Output

查询1:  enter image description here


查询2: enter image description here

以上两个查询的联盟:

enter image description here


预期输出:

enter image description here

1 个答案:

答案 0 :(得分:1)

主要问题是在查询中调用sql函数,试试这个:

SELECT 'MEAN','STANDARD_DEVATION','MAX','MIN','VARIANCE'
UNION
SELECT * FROM ( SELECT AVG('MetricValue'),STDDEV_SAMP('MetricValue'),MAX('MetricValue'),
MIN('MetricValue'),VAR_SAMP('MetricValue')
FROM 'XR_METRIC_ANALYSIS' ) as temp

这是一种可能的解决方案