5
我無法將下面的查詢轉換爲Zend_Db_Table_Select查詢。使用Zend_Db_Table_Select編寫子查詢
SELECT GROUP_CONCAT(wallet_transaction_id) as wallet_transaction_ids,transaction_type,source,status
FROM(
SELECT wallet_transaction_id, transaction_type, source, status
FROM ubiw_transactions_wallet
WHERE (game_id = '1292') AND (player_id = 1538)
ORDER BY date DESC LIMIT 100
) a
GROUP BY a.transaction_type,a.status, a.transaction_type;
任何幫助表示讚賞。
感謝, SHIV
由於它的正常使用。我忘記包含 setIntegrityCheck(false) –