如何在TableGateway的模型表中加入? 我有這個在我的模型/ NoticiasTable.php: protected $tableGateway;
public function __construct(TableGateway $tableGateway) {
$this->tableGateway = $tableGateway;
}
pu
嗨只獲取最新的行(通過ID),我需要一個ZF2加入第二個表查詢(按id DESC)獲取只有最後一排。我寫了一個SQL查詢,它的工作原理。 SELECT st1.customer_id,
st1.id
FROM status st1
inner JOIN
(
SELECT max(id) MaxId, customer_id
FROM sta
我還有另一個問題。我正在嘗試加入兩個表格,以便我可以從兩者中提取數據。我是TableGateway的新手,並且遇到問題時發現相同的情況。我有一個頁面,將按國家拉博客,我也有一個狀態表。我想加入這些使用state_id並顯示「狀態」從頁面上的狀態表。以下是我的。不知道我是否使用正確的代碼! 模式 - 從StateTable: public function getState($state)
{
我嘗試以不同的方式解決這個問題,但似乎沒有任何工作。 我有2種型號: namespace Admin\Model;
use Zend\Db\TableGateway\TableGateway;
class UsersMetaTable
{
protected $tableGateway;
public function __construct(TableGatewa