Hi All,
AlchemyDB has GREATLY extended its WhereClause functionality, meaning
more complex SELECTs, DELETEs, and UPDATEs.
A link to the new grammer can be found here:
http://code.google.com/p/alchemydatabase/wiki/CommandReference?ts=1294109584&updated=CommandReference#Where_Clause_Grammar
This change is the final change needed to make AlchemyDB TPCC able,
which is very exciting, because AlchemyDB should perform VERY strongly
in TPCC benchmarks.
Some examples of complicated queries, that are now possible, are:
SELECT * FROM tbl WHERE fk IN (1,2,3) and status IN (4,5,6) AND gender
= 'M' AND age > 21
UPDATE tbl SET count = count + 1 WHERE fk BETWEEN 1 AND 9 AND count <=
100 AND status in (7,8,9)
- Jak
p.s. next functions (which are TPCC optimisations) will be multiple
column sorting and multiple column indexes