You can use "value" as the alias if you want to map the count to an Integer or 
String resultClass.

select count(*) as value from SOME_TABLE

-----Original Message-----
From: Ted Schrader [mailto:[EMAIL PROTECTED]
Sent: Friday, January 27, 2006 3:10 PM
To: [email protected]
Subject: Re: Select count(*) in a resultMap


Hi Michael,

Try giving the resulting column an alias:

SELECT COUNT(*) AS MY_TOTAL FROM TABLE.

Then, use "MY_TOTAL" in your result map configuration.

Ted

On 27/01/06, Michael Laccetti <[EMAIL PROTECTED]> wrote:
>
>
>
> Is it possible to do a 'select count(*) from table' and then reference that
> value in a result map?  I've been searching around and trying to get it to
> work to no avail.
>
>
>
> Mike

Reply via email to