如何从数据末尾删除句号
我需要更新我的表格,因为一列中的许多字段最后都有句号,我需要删除它.
I need to update my table because a number of fields in a column have got a fullstop on the end, i need to remove this.
所以,在 TableA 中,Field1:数据看起来像
So, in TableA, Field1: the data looks like
1002243.
1007053.
1007403.
1104098.
1110010.
注意:并非所有字段的长度都相同.
NOTE: Not all the fields are the same length.
我需要删除句号.
我使用的是 SQL Server 2005,干杯 :)
Im using SQL Server 2005, cheers :)
推荐答案
UPDATE TableA
SET Field1 = LEFT(Field1 ,LEN(Field1)-1)
WHERE Field1 LIKE '%.'
相关文章