Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想更改一个 PostgreSQL 列以从 转换integer为decimal,将所有integer值设置为<value>.0。我该怎么做呢?
integer
decimal
<value>.0
ALTER TABLE my_table_name ALTER some_column TYPE decimal;
相关文件。