|
|
Browse by Tags
All Tags » count alias
-
For a query that returns virtual columns (as samples below show for simple count & subquery ) - is there a way to enum the virtual column names returned?
Code:OrdersQuery ordersQuery = new OrdersQuery(''ordersQuery'');
ordersQuery.es.CountAll = true;
ordersQuery.es.CountAllAlias = ''Count'';
OrdersCollection oc = new ...
-
Hello,
I'm trying to run the following query through entityspaces and then iterate through the collection.
Code:select
sectionid, count(phraseid) as 'PhraseCount'
from reportphrases
where
reportid = 3 and vehicletype = 'car'
group by sectionid
But I'm having a problem when it comes to accessing the aliased column PhraseCount. How ...
|
|
|