タグ付けされた質問 「distinct」

2
「SELECT DISTINCT attribute FROM products」に相当するMagento ORMとは何ですか?
(疑似)SQLで、特定の製品属性に使用されるすべての値のリストを取得する必要があります。 SELECT DISTINCT attribute FROM products; Magento ORMを使用して同等のクエリを生成するにはどうすればよいですか?distinct()関数を試してみましたが、期待どおりに動作しません。 // Returns an array of NULL with a length equal to all products in the catalog Mage::getModel('catalog/product')->getCollection() ->addAttributeToSelect('attribute') ->distinct(true) ->getColumnValues('attribute'); 私が取得しようとしているのはattribute、重複のない値の配列です array('some value', 'some other value', 'a really common value', 'etc...');
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.