0
qry1 = "Select * from ser_complaint_master a,ser_complaint_status b,company_master c
        where a.complaint_no=b.complaint_no
        and a.allocation_code=c.co_code
        and c.co_br_code='" + Session["BRCODE"] + "'
        and a.Complaint_Date>='" + Frdat + "' and a.Complaint_Date<='" + Todat + "'
        and a.status in ('Completed')
        and a.complaint_type in('" + cmptype + "')";

複数のテーブルが関係している場合に選択クエリで ORDER BY を使用する方法。

4

1 に答える 1

2

order by a.complaint_noクエリの末尾に追加します。

于 2013-03-02T06:26:19.630 に答える