如何在sql选择查询中使用order by按升序排序投诉no

时间:2013-03-02 04:45:59

标签: sql-order-by

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 + "')";

如果涉及多个表,如何在select查询中使用ORDER BY。

1 个答案:

答案 0 :(得分:2)

order by a.complaint_no添加到查询的末尾。