value method
A single column of the first row.
Implementation
Future<Object?> value(String column) async {
final q = prepared()
..select([column])
..limit(1);
final (sql, bindings) = grammar.compileSelect(q);
final rows = await connection.select(sql, bindings);
return rows.firstOrNull?[_resultKey(column)];
}