2
1

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.

DBのchar型,varchar型,nchar型,nvarchar型について最低限まとめ

Posted at

##■char型
・固定長の半角文字列
・指定された文字数よりも小さい文字列を格納した場合は、末尾に空白埋めされ指定された文字数で格納される
・例)システムで定義された固定長のコード値、郵便番号、etc、、

##■varchar型
・可変長の半角文字列
・指定された文字数よりも小さい文字列を格納した場合は、そのまま格納される
・例)個数、値段、etc、、

##■nchar型
・固定長の全角文字列
・指定された文字数よりも小さい文字列を格納した場合は、末尾に空白埋めされ指定された文字数で格納される

##■nvarchar型
・可変長の全角文字列
・指定された文字数よりも小さい文字列を格納した場合は、そのまま格納される
・例)日本人氏名、備考欄やメモに入力された内容、etc、、

##■文字格納時の容量について
・charはchar(100)で100文字確保したところに1文字しか入れない場合でも100文字分の容量を消費する
・varcharは可変的にスペースを変動させるため、varchar(100)に1文字しか入れない場合は1文字分の容量しか消費しない

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?