1. ホーム
  2. sql

[解決済み] SQL: 最初の文字だけを大文字にする [重複] 。

2022-08-11 04:51:22

質問

各単語の最初の文字を大文字にする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]

これが役立つといいのですが。

EDIT: 私は'-'について気づいたので、以下は関数でこの問題を解決しようとする試みです。

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])