delete method
Implementation
@override
Future<DbResult> delete(
String table, {
required Map<String, dynamic> where,
}) async {
final conditions = where.keys.map((k) => '$k = ${ph(k)}').join(' AND ');
return rawQuery('DELETE FROM $table WHERE $conditions;', values: where);
}