是否有任何特殊代码可以在 SQL Server 数据库字段中存储回车符?

发布于 2024-11-07 02:05:23 字数 145 浏览 0 评论 0原文

我需要在数据库字段中存储(硬编码)回车符。我只是找到用编程语言(例如 TSQL 中的 char(13))来完成此操作的方法,但我只想自己在字段中编写它,就像 HTML 中使用 &quot、&nsbp 等那样。 弗朗西斯

谢谢

I need to store (hardcoded) a carriage return in a database field. I just find methods to do it with programming languages (for instance char(13) in TSQL) but I just want to write it BY MYSELF in a field, as it happens in HTML with ", &nsbp, etc...

Thanks

Francesco

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

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

发布评论

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

评论(2

む无字情书 2024-11-14 02:05:23
SET @SomeVar="Hello 
     World".

All what do you need to write CR by hand it is just to press Enter inside of string.

SET @SomeVar="Hello 
     World".

All what do you need to write CR by hand it is just to press Enter inside of string.

羞稚 2024-11-14 02:05:23

原始SQL:

INSERT MyTable (col1, col2)
VALUES (1, '
')

SSMS、编辑表模式下没有办法。

Raw SQL:

INSERT MyTable (col1, col2)
VALUES (1, '
')

There is no way in SSMS, Edit table mode.

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