Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6552753
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:29:55+00:00 2026-05-25T12:29:55+00:00

Query : I like to know how one can get latest entry of a

  • 0

Query : I like to know how one can get latest entry of a domain entity in Grails.

Problem domain:

 class Parent {

    String name
    static hasMany = [children:Child]
}


class Child {

        String name
        Parent parent
        static belongsTo = [parent:Parent]

    }

Data model
enter image description here

Results

i like to pull record with id 4 and 7

where critria should be “get me last record of each parent where child’sname like ‘Rox%’

so far i have tried

SELECT
MAX(id)
FROM child
WHERE parent_id IN(SELECT
                     p.id
                   FROM parent AS p
                     JOIN child AS c
                       ON (c.parent_id = p.id
                           AND c.name LIKE 'Rox%'))
 GROUP BY parent_id 

thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T12:29:55+00:00Added an answer on May 25, 2026 at 12:29 pm

    Your description is a tad shady, but I think this is what you want:

    def idList = [1,4]
    def c = Parent.createCriteria()
    def result = c.list {
      'in'("id", idList)
      children {
        like("name","Rox%")
      }
      groupProperty("id")
    }
    

    Edit:

    You changed your whole question around while I typed my answer out, changed it around to match.

    Final edit:
    Add sorting to children {} in the edited code to get the sorting you want.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'd like to know the most efficient SQL query for achieving this problem: Say
I would like to know how you could query for one specific language, this
I'd like to know the standard way to benchmark a SQL Sever Query, preferably
I know that I can't get a specific answer to my question, but I
I've had quite a few problems and know that I can get some good
I know there are several question like this one but I feel I've spent
I would like to know some way to do this, maybe someone can help
I would like to know What is the best way to get the gps
I'd like to make a query where I can retrieve an interval of 10
i have one query that need some changes, and i don't get any clue

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.