listColumn<V> method
Implementation
Future<List<V>> listColumn<V>(
{required Object column, Where? where, Object? groupBy, Object? having, Object? window, Object? orderBy, int? limit, int? offset, SQLExecutor? executor}) async {
final r = await query(
columns: [column], where: where, groupBy: groupBy, having: having, window: window, orderBy: orderBy, limit: limit, offset: offset, executor: executor);
return r.listValues();
}