Skip to main content
July 19, 2013
Question

How can I grab the min pic and max pic by the date entered?

  • July 19, 2013
  • 1 reply
  • 534 views

I have a script that loads two pics at once and saves them as individual files. What I am trying to do is grab them individually using min(), max() where date_entered. But, I get the error "You tried to execute a query that does not include the specified expression 'date_entered' as part of an aggregate function." HEre is my code"

<cfquery name="getSire" datasource="#application.database#">

select date_entered, max(pic) as topPic from litters

where date_entered = '7/19/2013'

</cfquery>

How can I select the min picture and the max picture by the date it was entered?

    This topic has been closed for replies.

    1 reply

    p_sim
    Participating Frequently
    July 19, 2013

    You need "GROUP BY date_entered" after WHERE clause.

    select date_entered, max(pic) as topPic from litters

    where date_entered = '7/19/2013'

    group by date_entered

    July 22, 2013

    Thank you.

    I was trying to make this too complicated.