Snippets tagged “order-by”
3 snippets use this tag.
- How to add an ORDER BY clause using CodeIgniter's Active Record methods?PHP
To add an ORDER BY clause to a query using CodeIgniter's Active Record class, you can use the order_by() method.
- Laravel orderBy on a relationshipPHP
In Laravel, you can use the orderBy method on a relationship to sort the results of the relationship by a given column.
- Laravel: How to get last N entries from DBPHP
You can use the latest method on a query builder instance to get the last N entries from the database.