SQL Document Database with Full History
Endatabas is an open source immutable database. We hope you will enjoy building with Endatabas as much as you enjoyed writing your first program.
Endatabas is now in Beta. Read the One-Page Executive Summary.
For more information, please contact us at hello@endatabas.com.
-- store documents without CREATE TABLE INSERT INTO msgs {text: "Here is some classic material", user: "George", send_at: 2024-02-25T08:30:00Z, media: [{type: "image", src: "dsm.png"}, {type: "video", src: "vldb.mp4"}]}; -- retrieve documents with path expressions SELECT user, media FROM msgs WHERE msgs..type MATCH 'video'; -- travel through time SELECT * FROM msgs FOR SYSTEM_TIME AS OF 1985-10-26;