postgresql常用的查询语句

前端之家收集整理的这篇文章主要介绍了postgresql常用的查询语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

查询某个表的所有列信息

select * from information_schema.columns
where table_schema='public' and table_name='users';

修改表字段

修改表字段时,最好先把之前的删除

ALTER TABLE table_name DROP COLUMN if exists column_name1;
ALTER TABLE table_name ADD column1 integer;

原文链接:https://www.f2er.com/postgresql/194886.html

猜你在找的Postgre SQL相关文章