Mysql转PostGreSQL常见问题

开发过程中将数据库从Mysql迁移至PostgreSQL,有些代码还是需要响应的更新的。Postgr
阅读更多 →

Postgres Check(约束)

键表的约束 -- 使用check 关键字进行字段约束 create table users ( id int primary key, name varchar not null, age int default 20 check (age > 0 and age <=150), created_at timestamp with time zone
阅读更多 →

Postgres Index(索引)

索引分类 B-Tree 最常用的索引,适合用于处理等值查询和范围查询 。 Hash 只能简单的处理等值查询。 GiST 不是单独的一种索
阅读更多 →