Zeldus is a client side database management system that once loaded can be queried with regular SQL syntax.
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!
select, from and where
=, >, <, >=, <=, <> and !=
group by, count, sum, min, max