Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编写一个查询来清理/删除数据中的一些异常。我的数据包含以下元素 -
VALUE- <4.5
在这种情况下,我需要的是由于特殊字符而删除这些行或返回以下内容
VALUE 4.5
谢谢。
你可以做一个简单的更新和替换
UPDATE dbo.table Set Column1 = Replace(Column1, '<', '')
和任何其他
UPDATE dbo.table Set Column1 = Replace(Replace(Column1, '<', ''), ';', '')