sql >> データベース >  >> RDS >> PostgreSQL

PostgreSQLのLtreeモジュールはスレッド化されたコメントに適していますか?

    1. はい、はい;
    2. ナレッジベース(実装の1つ)のセクションの階層。
    3. はい;

    問題のテーブルの1つの定義:

                                                       Table "knowledgebase.section"
               Column           |           Type           |                                  Modifiers
    ----------------------------+--------------------------+-----------------------------------------------------------------------------
     section_sid                | integer                  | not null default nextval('knowledgebase.section_section_sid_seq'::regclass)
     section                    | character varying        | not null
     description                | character varying        |
     path                       | ltree                    | not null
     is_active                  | boolean                  | not null default true
     role_sid                   | integer                  | not null
     last_modified_by           | integer                  | not null
     creation_datetime          | timestamp with time zone | not null default now()
     last_modification_datetime | timestamp with time zone | not null default now()
     is_expanded                | boolean                  | not null default false
     section_idx                | tsvector                 |
    Indexes:
        "section_sid_pkey" PRIMARY KEY, btree (section_sid)
        "section_section_key" UNIQUE, btree (section)
        "idxsection_idx" gist (section_idx)
        "path_gist_idx" gist (path)
    Foreign-key constraints:
        "last_modified_by_fkey" FOREIGN KEY (last_modified_by) REFERENCES "user"."role"(role_sid) ON UPDATE CASCADE ON DELETE RESTRICT
        "role_sid_fkey" FOREIGN KEY (role_sid) REFERENCES "user"."role"(role_sid) ON  UPDATE CASCADE ON DELETE RESTRICT
    Triggers:
        section_idx_update BEFORE INSERT OR UPDATE ON knowledgebase.section FOR EACH ROW EXECUTE PROCEDURE tsearch2('section_idx', 'section')
    

    「パス」列は、主キーをラベルとして使用します。

    そのテーブルの現在の内容のサンプル(主キーと「パス」列に関して):

      section_sid | path
     -------------+-------
               53 | 34.53
               56 | 56
               55 | 29.55
               35 | 35
               54 | 34.54
               37 | 30.37
              ... | ...
    


    1. Datagridviewセル値変更更新データベース

    2. ビューを完全に具体化する前に、ビューに関するクエリに回答することは可能ですか?

    3. MySQLエラーコード:1030ストレージエンジンからエラー-1が発生しました。データベースからデータを削除しようとしました

    4. Oracle .netEntityFrameworkのapp.configのすべてのフィールドを定義する必要がある場合のORMのポイントは何ですか