# Retrieving Results

Usage## Retrieving Results

## Retrieving All Rows From A Table

```javascript
// qb
var getAllResults = query.from( "users" ).get();
writeDump( getAllResults );

// sql
// select * from users

// more qb examples
var getAllResults = query.from( "users" )
    .get(
        columns = [ "Id", "Name" ],
        options = { datasource = "myAdditionalDatasource" }
    );
```

The `get` method returns an `Array` of `Structs` by default. Both `columns` and `options` are optional.

```javascript
public any function get( any columns, struct options = {} )
```

## Retrieving A Single Row / Column From A Table

If you just need to retrieve a single row from the database table, you may use the `first` method. This method will return a single record (a `Struct` by default). If no row is found an empty `Struct` will be returned by default.

```javascript
//qb
var getResults = query.from('users')
    .first();
writeDump(getResults);

//sql
select * from users limit(1)
```

```javascript
public any function first( struct options = {} )
```

If you don't even need an entire row, you may extract a single value from each record using the `values` method. This method will return the value of the column directly:

```javascript
query.from( "users" ).values( "email" );
// [ "john@example.com", "jane@example.com", "jim@example.com", ... ]
```

```javascript
public any function values( required string column, struct options = {} );
```

If you only need a single column for the first record returned, use the `value` function:

```javascript
query.from( "users" ).value( "email" );
// "john@example.com"
```

```javascript
public any function value( required string column, struct options = {} );
```

## Options parameter: Retrieving results from alternative datasources

In application.cfc you can specify your default datasource which will be used by qb. If you want to retrieve data from other datasources you can specify this in all retrieval functions by using the extra options parameter such as:

```javascript
//qb
var getAllResults = query.from('users')
    .get( options={ datasource= 'MyOtherDatasourceName'} );
writeDump(getAllResults);
```

If you also want to use a non-default SQL Grammar you have to specify this when creating your querybuilder, e.g

```javascript
var query =  wirebox.getInstance('QueryBuilder@qb')
    .setGrammar( wirebox.getInstance('MSSQLGrammar@qb') );
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://qb.ortusbooks.com/6.4.0/query-builder/retrieving-results.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
