我正在使用 MS SQL,我的查询是这样的:
select
A.CUS_EuroCustId No_Id,
' ' BLANK1,
A.IVC_Number INV_Nr ,
' ' BLANK2,
'PINV' PINV ,
' ' BLANK3,
from
INVOICE as A
然后输出是这样的:
01102450 146918 PINV
01102847 146381 PINV
01105915 16151 PINV
01102646 146850 PINV
01105915 16150 PINV
IVC_Number 有两种格式,6 位和 5 位,IVC_Number 和 'PINV' 之间的空格很重要。现在我怎样才能在我的 SQL 查询中实现它,输出应该是这样的:
01102450 146918 PINV
01102847 146381 PINV
01105915 16151 PINV
01102646 146850 PINV
01105915 16150 PINV
谢谢。