SQL Server:REPLICATE() 内的 LENGTH()
我有一个 SQL Server 表,其中包含 Lvl
和 Title
列。我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
只需获取
Lvl
列,并将 1 的所有实例替换为您想要的任何字符,然后将 Title 连接到结果的末尾。Try this:
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.试试这个。对我来说效果很好 -
Try this. It works fine for me -