如何将Varchar2和Null值的记录相加?

时间:2017-03-15 06:15:23

标签: mysql sql

在我的表中,我有相同的日期,但有不同的Invoice_no_pawl varchar2和Null。如何在第一个地方和日期显示1200.00?

这是查询:

select invoice_date, invoice_no_pwal, invoice_value, payment_rec
from partywise_accounts_ledger
where name_of_the_customer = 'Naresh Agencies'

enter image description here

1 个答案:

答案 0 :(得分:0)

ORDER BY column1 DESC, column2

只要两行的column1字段相等,这就首先按列1(降序)排序,然后按列2(升序,这是默认值)排序。

祝你好运!

参考:Here