0

私は次の声明を持っています:

select 
    product_name as ShortestLength = (select top 1 product_name, len(fact_name) Value_Length 
                                      from table 
                                      order by Value_Length, fact_name ASC)

次の出力が返されます。

shortestlength
PS

この結果を別の select ステートメントに追加したいと思います。

select
    'Product' as Column_Name,
    avg(case when product is null then 1.000 else 0 end) * 100 as PctMissing,
    count(product) as TotalCount,
    count(distinct product) as UniqueCount
from 
    table

したがって、結果は次のようになります。

column_name 欠落している 総数 ユニークカウント 最短の長さ
製品 5.100 181186 15 PS

最初の select ステートメントに何を追加すればよいですか?

4

2 に答える 2