LoginSignup
1
2

More than 5 years have passed since last update.

postgresでテーブルのカラムの属性をintに変える

Posted at

alter文

alter table items alter column code type int USING code::integer;

最初にこう書くと、

alter table items alter column code type int

エラーが出てHINTが出るのでそれをくっつければよい

HINT:  You might need to specify "USING code::integer".
1
2
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
1
2