select * from テーブル名 where length(cast(列名 as text)) >= 999
length・・・文字列の文字数を取得
列名・・・キャストしたい列
as text ・・・定義によるので、charの場合も
Go to list of users who liked
More than 3 years have passed since last update.
select * from テーブル名 where length(cast(列名 as text)) >= 999
length・・・文字列の文字数を取得
列名・・・キャストしたい列
as text ・・・定義によるので、charの場合も
Register as a new user and use Qiita more conveniently
Go to list of users who liked