$ cd /blog/
首页
文章
标签
About
首页
文章
标签
About
Mysql转PostGreSQL常见问题
2021-02-19
#postgres
#sql
开发过程中将数据库从Mysql迁移至PostgreSQL,有些代码还是需要响应的更新的。Postgr
阅读更多 →
Postgres Check(约束)
2021-01-18
#postgres
#sql
键表的约束 -- 使用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(索引)
2021-01-18
#postgres
#sql
索引分类 B-Tree 最常用的索引,适合用于处理等值查询和范围查询 。 Hash 只能简单的处理等值查询。 GiST 不是单独的一种索
阅读更多 →