SQL Server:REPLICATE() 内的 LENGTH()

发布于 2024-09-26 19:48:18 字数 426 浏览 5 评论 0原文

我有一个 SQL Server 表,其中包含 LvlTitle 列。我需要在 Lvl 字段中的每个字符的标题前面插入一个“-”。

举个例子:如果Lvl = 111标题应该变成---我的标题

我只能编辑以下 SQL 字符串。不可能创建其他功能或类似功能。

SELECT REPLICATE('_', { fn LENGTH(Lvl) }) + ' ' + Title AS Title
FROM Documents

我的问题是,LENGTH() 函数在REPLICATE() 函数内不起作用。有谁知道为什么或如何解决这个问题?

谢谢。

I have a SQL Server table with the columns Lvl and Title. I need to insert a "-" in front of the title for every character in the Lvl field.

As an example: If Lvl = 111 the title should become --- My Title.

I can only edit the following SQL string. There is no possibility to create other functions or likewise.

SELECT REPLICATE('_', { fn LENGTH(Lvl) }) + ' ' + Title AS Title
FROM Documents

My problem is, that the LENGTH() function doesn't work inside the REPLICATE() function. Does anybody know why or how to solve this problem?

Thank you.

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

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

发布评论

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

评论(2

淡看悲欢离合 2024-10-03 19:48:18

试试这个:

SELECT REPLACE(Lvl, '1', '-') + ' ' + Title as Title
FROM Documents

只需获取 Lvl 列,并将 1 的所有实例替换为您想要的任何字符,然后将 Title 连接到结果的末尾。

Try this:

SELECT REPLACE(Lvl, '1', '-') + ' ' + Title as Title
FROM Documents

Simply take the Lvl column, and replace all instances of 1 with whatever character you want, then concatenate Title to the end of the result.

月依秋水 2024-10-03 19:48:18

试试这个。对我来说效果很好 -

select REPLICATE('-',LEN(Lvl)) + ' ' + Title as title from documents

Try this. It works fine for me -

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