QBSorts
Last updated
Last updated
The QBSorts
class is a versatile utility for managing sorting conditions in QBSelect
queries. It enables developers to define ascending or descending sort orders for columns and functions, offering granular control over query result organization. This class integrates with other query builder components, allowing for dynamic updates to sorting criteria during query construction.
With support for adding primary key columns automatically in alphabetical order, QBSorts
streamlines the sorting process in complex queries. Additionally, it includes features for clearing sorting conditions, ensuring flexibility and adaptability. Key methods include add(columnSortAsc)
for adding sort orders, addPk()
for incorporating primary key columns, and clear()
for resetting the sort configuration.
For more details, see the QBSelect documentation.
Type | Name | Summary |
---|---|---|
Type | Name | Summary |
---|---|---|
Get query builder parent table clause, this may be a query or a join clause.
Type QBSelect
Sample
Get query builder parent.
Type QBSelect
Sample
Ad an ascending sorting on a column to the query sort.
Parameters
QBColumn columnSortAsc column to sort by
Returns: QBSorts
Sample
Ad an ascending sorting on a column to the query sort.
Parameters
QBColumn functionSortAsc function to add
Returns: QBSorts
Sample
Ad a sorting on a column to the query sort.
Parameters
QBSort sort the sort to add
Returns: QBSorts
Sample
Add the tables' primary pk columns in alphabetical order to the query sort.
Returns: QBSorts
Sample
Clear the sorting clause for the query.
Returns: QBSorts
Sample