Zeldus

A client side column oriented DBMS

Zeldus is a client side database management system that once loaded can be queried with regular SQL syntax.

View the project on GitHub
API documentation

Example queries

select shipdate 
from lineitem
select shipdate, linenumber 
from lineitem
select shipdate 
from lineitem
where shipdate > 19940101
select linenumber 
from lineitem
where shipdate > 19940101
select linenumber, shipmode 
from lineitem
where supplierkey = 777
and shipdate > 19940101
...and many more!

Table: lineitem

loading...
Enter a query

Avaliable keywords

select, from and where

Predicates

=, >, <, >=, <=, <> and !=

Coming soon

group by, count, sum, min, max
Zeldus Copyright © 2014, Roger Noble All Rights Reserved.