WhereOn this pageWhereThe where option can be used to filter records, similar to the SQL WHERE clause.SQLSelect * From Table_NameWhereColumn1=some_valueJsStorevar results = await connection.select({ from: "Table_Name", where: { column1: some_value }});console.log(results);Example