delete method
Implementation
Future<QueryResult> delete({required Where where, Returning? returning, SQLExecutor? executor}) async {
return await (executor ?? defaultExecutor).delete(tableName, where: where, returning: returning);
}
Future<QueryResult> delete({required Where where, Returning? returning, SQLExecutor? executor}) async {
return await (executor ?? defaultExecutor).delete(tableName, where: where, returning: returning);
}