Where

.where(column: str, operator: str, value: Any, join_type: str = "AND")

db = Knex("<db name>")

db.select().from_("<table>").where("field", "=", "abc")
db = Knex("<db name>")

db.select()
    .from_("<table>")
    .where("field", "=", "abc")
    .where("field", "<>", "bac")
    .where("field", "LIKE", "ba%", join_type="OR")