|
10.03.2009, 23:05 | #1 |
Участник
|
Microsoft Dynamics CRM Team Blog: Support for COUNT(DISTINCT) in Fetch XML queries
Источник: http://blogs.msdn.com/crm/archive/20...l-queries.aspx
============== We have made a couple of enhancements to the aggregate query feature of Fetch XML. These updates have shipped for version 4.0 as part of UR2 and for version 3.0 as documented in KB Article 960079. So far we only supported the count aggregate function which essentially did a count(*) on the base table of the entity. We have enhanced this functionality to add a new aggregate operation countcolumn which now performs the SQL count operation for a given column. It also support the distinct keyword which only counts unique columns. If the distinct keyword is not specified with a countcolumn aggregate, its value defaults to false. Here is a table that summarizes the Fetch aggregate types and its equivalent SQL translation: CRM Fetch XML SQL SELECT COUNT(*) AS 'citycount' FROM Account SELECT COUNT(address1_city) AS 'citycount' FROM Account SELECT COUNT(DISTINCT address1_city) AS 'citycount' FROM Account Key: Existing Feature, New Feature Here are a couple of examples for using these features: Query to return a count of all Accounts which have a county specified in their address. 1: Query to return a count of all Accounts which have a county specified in their address. 2: 3: 4: 5: 6: Query to return a count of states in which we have an account. This uses the distinct keyword which counts a state only once. 1: 2: 3: 4: 5: Thanks Noor Merchant Technorati Tags: Code,Tips and Tricks,XML,Dynamics CRM 4.0 Источник: http://blogs.msdn.com/crm/archive/20...l-queries.aspx
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
12.03.2009, 12:16 | #2 |
Moderator
|
Полезная вещь. Жаль только для Fetch работает и интересно что будет, если такой фетч запрос попытаться преобразовать в QueryExpression?
__________________
http://fixrm.wordpress.com, снятие/наведение порчи. Быстро, дорого, гарантия. MS Certified Dirty Magic Professional |
|
|
|