Error message

You are browsing documentation for drupal 7.x, which is not supported anymore. Read the updated version of this page for drupal 11.x (the latest version).

function SelectQuery_pgsql::orderRandom

Overrides SelectQuery::orderRandom

File

includes/database/pgsql/select.inc, line 15

Class

SelectQuery_pgsql

Code

public function orderRandom() {
 $alias = $this->addExpression ('RANDOM()', 'random_field');
 $this->orderBy ($alias);
 return $this;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.