1 Answer
- Newest
- Most votes
- Most comments
0
I believe CREATING a VIEW with the latest version and exposing that view to the user would be appropraite.
CREATE OR REPLACE VIEW latest_version_only AS
select * from "datalake"."table1"
where version_no = (SELECT MAX(version_no) FROM "datalake"."table1");
answered 4 years ago
Relevant content
asked 4 years ago
asked 2 years ago
asked 4 years ago
- AWS OFFICIALUpdated 2 years ago
