SQL命令不改变数据

发布于 2024-08-01 16:24:09 字数 226 浏览 4 评论 0原文

我正在使用下面的 SQL 命令来更新名为“地址”的列,该值包含换行符,我想用分号替换它们。 在查询分析器中,预览看起来很完美,但是当我在企业管理器 (MS SQL 2000) 中检查数据时,我仍然看到方块,即换行符。 我不是在承诺改变吗? 我哪里出错了? 谢谢

I'm using the SQL command below to update a column called Address, the value contains line feeds and I want to replace them with a semi-colon. In Query Analayzer the preview looks perfect but when I check the data in Enterprise Manager (MS SQL 2000) I still see the squares i.e. the line feeds. Am I not commiting the change? Where am I going wrong? Thanks

alt text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

惟欲睡 2024-08-08 16:24:09

那将是:

UPDATE customers SET Address = REPLACE(REPLACE(REPLACE(Address,CHAR(10)+CHAR(13),' '),CHAR(10),';'),CHAR(13),';')

That would be:

UPDATE customers SET Address = REPLACE(REPLACE(REPLACE(Address,CHAR(10)+CHAR(13),' '),CHAR(10),';'),CHAR(13),';')
老街孤人 2024-08-08 16:24:09
UPDATE Customers
   SET Address = REPLACE(.....)
UPDATE Customers
   SET Address = REPLACE(.....)
℉服软 2024-08-08 16:24:09

您需要使用UPDATE语句!

SELECT 中的替换仅更改输出,而不更改表中的数据。

BEGIN TRAN
UPDATE Customers SET Address = REPLACE(Address, char(10) + char(13), ' ') .... etc

--Check you like the change
SELECT * FROM Customers
--COMMIT --uncomment this to commit the changes.

You need to use an UPDATE statement!

The replace in the SELECT just changes the output not the data in the table.

BEGIN TRAN
UPDATE Customers SET Address = REPLACE(Address, char(10) + char(13), ' ') .... etc

--Check you like the change
SELECT * FROM Customers
--COMMIT --uncomment this to commit the changes.
唱一曲作罢 2024-08-08 16:24:09

当您在选择内执行替换时,仅更改“选定”的数据。 因此,替换是在向您显示数据之前完成的。 表数据不会被选择所触及。 列中的数据需要通过更新语句进行更新,例如:

UPDATE customers SET
    Address = REPLACE(Address,CHAR(10)+CHAR(13), ' ')

When you perform a replace inside a select only the data "selected" is changed. So the replace is done just before showing you the data. The table data is not touched by a select. The data in the column needs to be updated via an update statement like:

UPDATE customers SET
    Address = REPLACE(Address,CHAR(10)+CHAR(13), ' ')
断桥再见 2024-08-08 16:24:09

问题是当文本中的第一个替换完成时 char(10) 和 char(13) 被替换为 ' ' 并且下一个替换 nerev 不执行任何操作

the problem is the when first replace is completed in the text char(10) and char(13) are replaced with ' ' and the next replaces nerev do nothing

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文