zeeSQL now runs on SQLite 3.35
SQLite with RETURNING
127.0.0.1:6379> ZEESQL.EXEC DB COMMAND "create table random_id(id STRING DEFAULT (hex(randomblob(16))), name STRING, score INT);"
1) 1) "DONE"
2) 1) (integer) 0
127.0.0.1:6379> ZEESQL.EXEC DB COMMAND "insert into random_id(name, score) values('john', 3),('mary', 4) RETURNING id"
1) 1) "RESULT"
2) 1) "id"
3) 1) "TEXT"
4) 1) "A3400CE9270D6F7AFAE3FA1F09DD5798"
5) 1) "0FC0FA5557C3F873A80F6949EF01AEA0"
127.0.0.1:6379> ZEESQL.EXEC DB COMMAND "select * from random_id;"
1) 1) "RESULT"
2) 1) "id"
2) "name"
3) "score"
3) 1) "TEXT"
2) "TEXT"
3) "INT"
4) 1) "A3400CE9270D6F7AFAE3FA1F09DD5798"
2) "john"
3) (integer) 3
5) 1) "0FC0FA5557C3F873A80F6949EF01AEA0"
2) "mary"
3) (integer) 4SQLite with math functions
SQLite with DROP column
Conclusion
PreviousDoubling the performances of RediSQL, SQL steroids for Redis.NextQuery Redis on two attributes
Last updated