2

orientdb に相当する「ビュー」はありますか?

私は rdbms のバックグラウンドを持っており、クエリを直接クエリできるオブジェクトとして保存する方法を探しています。

たとえば、次のクエリを見てください SELECT mobile_number AS mobile_number, verifications.verification_code[0] AS verification_code, verifications.is_verified[0] AS is_verified, Max(verifications.active_devices .@ rid) AS device_rid, verifications.active_devices .@ version AS active_version FROM guests

というこのクエリで「ビュー」を作成したいのですが、次のようなものを使用してverified_guestsクエリを実行したいと思いますverified_guestsselect from verified_guests

rdbmsの世界では、次のことができます create view verified_guests as SELECT mobile_number AS mobile_number, verifications.verification_code[0] AS verification_code, verifications.is_verified[0] AS is_verified, Max(verifications.active_devices .@ rid) AS device_rid, verifications.active_devices .@ version AS active_version FROM guests

それから私はできるでしょうselect * from verified_guests

orientdb にはこれと同等または代替手段がありますか?

任意のガイダンスをいただければ幸いです。

ありがとう、

4

1 に答える 1