PostgreSQL批次改資料型別

哎呀我的天吶發表於2022-08-17

登入到所在庫執行

select 'alter table '|| table_name || ' alter column ' || column_name || ' type varchar('|| character_maximum_length||');' as alter_integer_ddl
from information_schema.columns
where data_type like '%pbchar%'
-- and table_name not like '%sys_p%'
and table_schema = 'ta6xxxx'
order by table_name;


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29990276/viewspace-2910861/,如需轉載,請註明出處,否則將追究法律責任。

相關文章