db where
Includes a where statement for a query
Signature
> db where (where)
Parameters
where
: Where expression on the table
Examples
selects a column from a database with a where clause
> db open db.mysql
| db select a
| db from table_1
| db where ((db col a) > 1)
| db describe