LoginSignup
7
6

More than 5 years have passed since last update.

SQLServerでゼロパディング(2012以降)

Posted at

SQLServer2012以降で追加されたFORMAT関数を利用することでゼロパディングできます。

例えば4桁0詰したい場合だと以下のようになります

SELECT FORMAT(1,'D4')
-- 出力結果:0001

SELECT FORMAT(1,'0000')
-- 出力結果:0001
7
6
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
7
6