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 2 years ago
Relevant content
- asked 2 years ago
- asked 3 months ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated 9 months ago