Bạn có thể nhanh chóng tóm tắt hàm vào một bảng - ai biết nó đang sử dụng bộ điều hợp nào:
class MyTable extends Zend_Db_Table_Abstract {
public function randomSelect($select=null) {
if ($select === null) $select = $this->select();
if (!$select instanceOf Zend_Db_Select) $select = $this->select($select);
$adapter = $this->getAdapter();
if ($adapter instanceOf Zend_Db_Adapter_Mysqli) {
$select->order(new Zend_Db_Expr('RAND()'));
} else if ($adapter instanceOf Zend_Db_Adapter_Dblib) {
$select->order(new Zend_Db_Expr('NEWID()'));
} else {
throw new Exception('Unknown adapter in MyTable');
}
return $select;
}
}
$someSelect = $table->select();
// add it to an existing select
$table->randomSelect($someSelect);
// or create one from scratch
$select = $table->randomSelect();
Ngoài ra, tôi đã tìm thấy một bài báo ở đâu đó mà tôi đã đánh mất đề nghị thử một cái gì đó như:
$select->order(new Zend_Db_Expr('0*`id`+RAND()));
để lật đổ trình tối ưu hóa truy vấn của MSSQL và lừa nó tính toán một giá trị mới cho mỗi hàng.