SQL: 첫 글자만 대문자로 표시
각 단어의 첫 글자를 대문자로 쓰기 위해 SQL 문이 필요합니다.다른 문자는 소문자여야 합니다.
단어는 다음과 같습니다.
wezembeek-oppem
roeselare
BRUGGE
louvain-la-neuve
이는 다음과 같아야 합니다.
Wezembeek-Oppem
Roeselare
Brugge
Louvain-La-Neuve
UPDATE 문이 있어야 합니다. 열의 데이터를 업데이트하려고 합니다.미리 답변해주셔서 정말 감사합니다, 저는 SQL 초보자입니다.
열 자체의 이름을 바꾸거나 열 내부의 데이터를 대문자로 바꾸라는 것입니까?데이터를 변경해야 하는 경우 다음을 사용합니다.
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])
아래 함수 만들기
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
다음 기능을 사용하지 않고 쿼리를 확인하십시오.
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
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));
언급URL : https://stackoverflow.com/questions/15290754/sql-capitalize-first-letter-only
'programing' 카테고리의 다른 글
iOS 8을 사용하여 iPad에서 UIAlert 컨트롤러를 올바르게 표시하기 (0) | 2023.06.04 |
---|---|
UI WebView에서 HTML 컨텐츠 읽기 (0) | 2023.06.04 |
활성 레코드를 복제하는 가장 쉬운 방법은 무엇입니까? (0) | 2023.06.04 |
ActiveRecord 콜백 실행을 방지하려면 어떻게 해야 합니까? (0) | 2023.06.04 |
npm이 make not found 오류와 함께 시간을 설치하지 못했습니다. (0) | 2023.06.04 |