0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【SQL Server】「ゔ」が「ヴ」になってしまった話

Posted at

データベースに「ゔぃんせんと」と登録しようとしたら「ヴぃんせんと」にされてしまいました。

#現象

SQL Serverでvarchar型のカラムに「ゔ」をinsertしようとすると「ヴ」と登録されます。
▼varcharのカラムに
0.png
▼「ゔ」をinsert
01.png
▲「ヴ」になっている!

#原因

SQL Serverのvarchar型はデフォルトの文字コードがShift_JISだそうです。「ゔ」はShift_JISに存在しない為、文字の意味的に近い「ヴ」としてinsertされるようです(推測)

#対処

nvarchar型でinsertしましょう。
nvarchar型は文字コードがUnicodeなので「ゔ」をinsertすることができます。
insertする際にUnicodeを意味するNプレフィックスを指定します。

▼nvarcharのカラムに
02.png
▼Nプレフィックスを指定してinsertします
03.png
▲「ゔ」が正しくinsertされました!

#まとめ

「ゔ」以外にもShift_JISで扱えない文字が存在するようなので、SQL Serverで日本語の文字列をinsertするときは、nvarchar型Nプレフィックスを指定してinsertしましょう。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?