Other Query Options

Besides filters there are a few other other options available to specify in your queries.

Only Distinct Results

Selecting this option will remove duplicates from the returned data. For example, if your query was on a column called Names, and the table had 17 entries for John, 12 entries for Sally, and 1 entry for Joe, selecting this option would only return the list {John, Sally, Joe}.

Order

Use this option to order your results upon return. Select a column to sort them by, and then the direction (ASC for ascending, DESC for descending). Data is sorted either alphabetically or numerically depending on the columns data type.

Limit

Use this option to return only a number of records from the database up to the number you specify here. This is useful for quickly seeing how the data looks without getting the whole table, which can take a lot of time.


[index]