gpt4 book ai didi

sql - 在某些 Sql 代码中,如何获取给定索引的字符串的字符值?

转载 作者:行者123 更新时间:2023-12-04 14:42:29 30 4
gpt4 key购买 nike

我在一些 sql 中有一些字符串。给定索引,我需要找出该字符串的字符是什么。

例如。

DECLARE @someString NVARCHAR(MAX) = 'hi folks'
DECLARE @index INT = 4 -- assuming the first index is 1, not 0.

现在 .. 在上面的示例中,我如何获取第 4 个索引槽中的字符,即“f”。

谢谢:)

最佳答案

你可以试试

DECLARE @someString NVARCHAR(MAX) = 'hi folks' 
DECLARE @index INT = 4 -- assuming the first index is 1, not 0.
SELECT SUBSTRING(@someString, @index, 1)

关于sql - 在某些 Sql 代码中,如何获取给定索引的字符串的字符值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2294209/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com