metarhia/metasql

`IN` support required

AliusDieMorietur opened this issue · 0 comments

It will be nice to have sth like this .select('Table', ['*'], { id: ['1', '2'] }) => id IN ('1', '2')

Possible Solution:
// database.js if (value instanceof Array) { return ['IN', value]; }