我可以通過這個SQL獲得一些幫助並分割一個列字符串嗎?使用字符分隔符分割列
我目前得到的輸出
ID_Reference | Balance
203587 -902
203948 -111
輸出我需要它:
ID_Reference | Balance
203587 902
203948 111
我使用的代碼如下:
select AccountReference,CurrentBalance from SB_RentAccountBalances_V where CurrentBalance like '-%'
謝謝,
我假設你正在使用SQL Server,所以我增加了一個標籤。 –