sql – 是否可以在每个记录标签上使用PG序列?

前端之家收集整理的这篇文章主要介绍了sql – 是否可以在每个记录标签上使用PG序列?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Postgresql 9.2是否提供了任何功能,可以生成一个命名空间为特定值的序列?例如:
.. | user_id | seq_id | body | ...
 ----------------------------------
  - |    4    |   1    |  "abc...."
  - |    4    |   2    |  "def...."
  - |    5    |   1    |  "ghi...."
  - |    5    |   2    |  "xyz...."
  - |    5    |   3    |  "123...."

这对于为用户生成自定义URL非常有用:

domain.me/username_4/posts/1    
domain.me/username_4/posts/2

domain.me/username_5/posts/1
domain.me/username_5/posts/2
domain.me/username_5/posts/3

我没有在PG文档中找到任何内容(关于序列和序列函数)来执行此操作. INSERT语句中的子查询自定义PG的子查询是唯一的其他选项吗?

解决方法

也许这个答案有点偏离滑雪道,但我会考虑 partitioning这些数据,并为每个用户提供他们自己的分区表.

设置有一些开销,因为您需要触发器来管理分区的DDL语句,但是会有效地导致每个用户拥有自己的帖子表以及他们自己的序列,并且能够对待所有作为一个大表也发布.

概念的一般要点……

psql# CREATE TABLE posts (user_id integer,seq_id integer);
CREATE TABLE

psql# CREATE TABLE posts_001 (seq_id serial) INHERITS (posts);
CREATE TABLE

psql# CREATE TABLE posts_002 (seq_id serial) INHERITS (posts);
CREATE TABLE

psql# INSERT INTO posts_001 VALUES (1);
INSERT 0 1

psql# INSERT INTO posts_001 VALUES (1);
INSERT 0 1

psql# INSERT INTO posts_002 VALUES (2);
INSERT 0 1

psql# INSERT INTO posts_002 VALUES (2);
INSERT 0 1

psql# select * from posts;
 user_id | seq_id 
---------+--------
       1 |      1
       1 |      2
       2 |      1
       2 |      2
(4 rows)

我在上面的设置中遗漏了一些相当重要的CHECK约束,请确保read the docs如何使用这些类型的设置

原文链接:https://www.f2er.com/mssql/84016.html

猜你在找的MsSQL相关文章