我需要更新我的表格,因为一列中的许多字段最后都有句号,我需要删除它.
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 '%.'
这篇关于如何从数据末尾删除句号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
修改现有小数位信息Modify Existing decimal places info(修改现有小数位信息)
多次指定相关名称“CONVERT"The correlation name #39;CONVERT#39; is specified multiple times(多次指定相关名称“CONVERT)
T-SQL 左连接不返回空列T-SQL left join not returning null columns(T-SQL 左连接不返回空列)
从逗号或管道运算符字符串中删除重复项remove duplicates from comma or pipeline operator string(从逗号或管道运算符字符串中删除重复项)
将迭代查询更改为基于关系集的查询Change an iterative query to a relational set-based query(将迭代查询更改为基于关系集的查询)
将零连接到 sql server 选择值仍然显示 4 位而不是concatenate a zero onto sql server select value shows 4 digits still and not 5(将零连接到 sql server 选择值仍然显示 4 位而不是 5)