1
3つの列を持つIOTを作成する際に助けてください。そのうちの1つに降順が必要です。降順で索引構成表を作成する方法
私はテーブルを作成しましたが、created_date descで順序付けされていません。
マイテーブル:
create table audit_log (
id integer,
created_date timestamp,
module_type_id integer,
...<other columns>...
constraint pk_audit_log primary key (created_date, module_type_id, id))
organization index overflow;
私は残念ながらconstraint pk_audit_log primary key (created_date DESC, module_type_id, id)
ようIOTを必要とする、私はそれを行うにはどのようにウェブ上のすべてのリソースを見つけることができませんでした。 誰も似たような仕事に直面したことや、スクリプトを作成する方法を知っていますか?
ありがとうございました