计算选定的行DB2

时间:2018-06-28 09:36:31

标签: sql function db2

我正在计算所有行。但我没有得到任何好的结果,有任何提示吗?

最好是如果我可以通过子查询来做到这一点。

<div class="container">
    <div class="row align-items-center">
        <div class="col-md-3" id="append_target">
            <div style="border: 2px solid grey; border-radius: 12px; padding: 5px; margin-bottom: 10px" class="anliegenGrammatik"></div>
        </div>
        <div class="col-md-3">
            <button class="btn"><b style="color: red">X</span></b>
        </div>
    </div>
</div>

/* SCRIPT */

var clone = $('.anliegenGrammatik').clone();
$('.anliegenGrammatik').remove();
$.each(response, function(index, item) {
    var t_clone = clone.clone(); // you need to clone each loop cycle 
                                 // otherwise you keep appending the same element again and again
    t_clone.text( item.name );
    $('#append_target').append(t_clone);
});

2 个答案:

答案 0 :(得分:0)

问题不清楚。

您是否要根据查询来计算唯一组合的总数?

尝试:

 select count(distinct  FIPBNR, FILAR1, filev1,fiben1,fiart,fiben2,fiurk)
 from TRUFPR424/TRAFI00 
 where fifili <> 0 and filev1 = '6253744' and fiurk != 'U'

答案 1 :(得分:0)

您可以将选择内容包装在括号中,并像表一样对待。

select count(*) from ( 
select distinct  FIPBNR, FILAR1, filev1,fiben1,fiart,fiben2,fiurk


 from TRUFPR424/TRAFI00 
 where fifili <> 0 and filev1 = '6253744' and fiurk != 'U'

) as a