SQL:仅首字母大写[重复]
Posted
技术标签:
【中文标题】SQL:仅首字母大写[重复]【英文标题】:SQL: capitalize first letter only [duplicate] 【发布时间】:2013-03-08 09:33:17 【问题描述】:我需要一条 SQL 语句来将每个单词的首字母大写。其他字符必须小写。
单词可以是这样的:
wezembeek-oppem
roeselare
BRUGGE
louvain-la-neuve
应该是这样的:
Wezembeek-Oppem
Roeselare
Brugge
Louvain-La-Neuve
这应该是一个UPDATE语句,我想更新一列的数据。 非常感谢您提前回答,我是 SQL 新手。
【问题讨论】:
看看这是否有帮助***.com/q/55054/285582 谢谢,布鲁诺。您的链接提供了解决方案。 如果单词用空格分隔:SELECT INITCAP(full_name) FROM names
【参考方案1】:
您是要求重命名列本身还是将列内的数据大写?如果您必须更改其数据,请使用:
UPDATE [yourtable]
SET word=UPPER(LEFT(word,1))+LOWER(SUBSTRING(word,2,LEN(word)))
如果你只是为了显示而改变它而不需要改变表中的实际数据:
SELECT UPPER(LEFT(word,1))+LOWER(SUBSTRING(word,2,LEN(word))) FROM [yourtable]
希望这会有所帮助。
编辑:我意识到 '-' 所以这是我在函数中解决这个问题的尝试。
CREATE FUNCTION [dbo].[CapitalizeFirstLetter]
(
--string need to format
@string VARCHAR(200)--increase the variable size depending on your needs.
)
RETURNS VARCHAR(200)
AS
BEGIN
--Declare Variables
DECLARE @Index INT,
@ResultString VARCHAR(200)--result string size should equal to the @string variable size
--Initialize the variables
SET @Index = 1
SET @ResultString = ''
--Run the Loop until END of the string
WHILE (@Index <LEN(@string)+1)
BEGIN
IF (@Index = 1)--first letter of the string
BEGIN
--make the first letter capital
SET @ResultString =
@ResultString + UPPER(SUBSTRING(@string, @Index, 1))
SET @Index = @Index+ 1--increase the index
END
-- IF the previous character is space or '-' or next character is '-'
ELSE IF ((SUBSTRING(@string, @Index-1, 1) =' 'or SUBSTRING(@string, @Index-1, 1) ='-' or SUBSTRING(@string, @Index+1, 1) ='-') and @Index+1 <> LEN(@string))
BEGIN
--make the letter capital
SET
@ResultString = @ResultString + UPPER(SUBSTRING(@string,@Index, 1))
SET
@Index = @Index +1--increase the index
END
ELSE-- all others
BEGIN
-- make the letter simple
SET
@ResultString = @ResultString + LOWER(SUBSTRING(@string,@Index, 1))
SET
@Index = @Index +1--incerase the index
END
END--END of the loop
IF (@@ERROR
<> 0)-- any error occur return the sEND string
BEGIN
SET
@ResultString = @string
END
-- IF no error found return the new string
RETURN @ResultString
END
那么代码就是:
UPDATE [yourtable]
SET word=dbo.CapitalizeFirstLetter([STRING TO GO HERE])
【讨论】:
这不会处理连字符的情况。 是的,这将是对现有列的更新,我将此添加到我最初的问题中。 添加了一个尝试的答案来处理连字符的情况 - 因为我在工作中没有测试,所以它是一个快速的尝试,可能需要调整。 我实际上在这里找到了我的解决方案; ***.com/questions/55054/… 但您的解决方案非常相似。谢谢! @samn - 没问题,很高兴你得到了你需要的帮助。【参考方案2】:创建以下函数
Alter FUNCTION InitialCap(@String VARCHAR(8000))
RETURNS VARCHAR(8000)
AS
BEGIN
DECLARE @Position INT;
SELECT @String = STUFF(LOWER(@String),1,1,UPPER(LEFT(@String,1))) COLLATE Latin1_General_Bin,
@Position = PATINDEX('%[^A-Za-z''][a-z]%',@String COLLATE Latin1_General_Bin);
WHILE @Position > 0
SELECT @String = STUFF(@String,@Position,2,UPPER(SUBSTRING(@String,@Position,2))) COLLATE Latin1_General_Bin,
@Position = PATINDEX('%[^A-Za-z''][a-z]%',@String COLLATE Latin1_General_Bin);
RETURN @String;
END ;
然后这样称呼它
select dbo.InitialCap(columnname) from yourtable
【讨论】:
你应该attribute your code sources。 此 Jef 的 Moden 函数不适用于带有重音符号的名称。【参考方案3】:请在不使用函数的情况下检查查询:
declare @T table(Insurance varchar(max))
insert into @T values ('wezembeek-oppem')
insert into @T values ('roeselare')
insert into @T values ('BRUGGE')
insert into @T values ('louvain-la-neuve')
select (
select upper(T.N.value('.', 'char(1)'))+
lower(stuff(T.N.value('.', 'varchar(max)'), 1, 1, ''))+(CASE WHEN RIGHT(T.N.value('.', 'varchar(max)'), 1)='-' THEN '' ELSE ' ' END)
from X.InsXML.nodes('/N') as T(N)
for xml path(''), type
).value('.', 'varchar(max)') as Insurance
from
(
select cast('<N>'+replace(
replace(
Insurance,
' ', '</N><N>'),
'-', '-</N><N>')+'</N>' as xml) as InsXML
from @T
) as X
【讨论】:
【参考方案4】:select replace(wm_concat(new),',','-') exp_res from (select distinct initcap(substr(name,decode(level,1,1,instr(name,'-',1,level-1)+1),decode(level,(length(name)-length(replace(name,'-','')))+1,9999,instr(name,'-',1,level)-1-decode(level,1,0,instr(name,'-',1,level-1))))) new from table;
connect by level<= (select (length(name)-length(replace(name,'-','')))+1 from table));
【讨论】:
不是 SQL Server 答案... 是的,我还没有看到指定的数据库!我的错误....查询应该是针对 Oracle db..以上是关于SQL:仅首字母大写[重复]的主要内容,如果未能解决你的问题,请参考以下文章