可以
MSSQL參考~
select (case when Sort = 1 then 發票日期 else '' end) 發票日期
,(case when Sort = 1 then 發票號碼 else '' end) 發票號碼
,序號
,客戶全名
,統一編號
,(case when Sort = 1 then Convert(varchar,發票金額) else '' end) 發票金額
from (
select Row_Number()over(PARTITION BY 發票號碼,發票日期,發票金額 order by 序號) Sort
,*
from 資料表
) k
order 發票號碼,發票日期,發票金額,序號