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_guests
select 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 にはこれと同等または代替手段がありますか?
任意のガイダンスをいただければ幸いです。
ありがとう、