LoginSignup
0
1

More than 5 years have passed since last update.

[Tips]Redshiftで文字列の末尾を削除する

Last updated at Posted at 2017-09-06

末尾からn文字分だけ削除した文字列を取得する。

-- 2文字削除の場合
SELECT SUBSTRING('abcdef', 1, CHAR_LENGTH('abcdef')-2));
> abcd

-- 3文字削除の場合
SELECT SUBSTRING('abcdef', 1, CHAR_LENGTH('abcdef')-3));
> abc

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