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中列的顺序?
我正在为 mac 使用 postico。谢谢。
您可以使用您的 ordering du jour重新创建表。但是,可能最简单的方法就是使用您想要的列查询表:
select col3, col1, col4, . . . from t;
您可以将其包装在视图中,以便将来随时使用:
create view v_t as select col3, col1, col4, . . . from t;