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) –