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 9073197
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T18:21:38+00:00 2026-06-16T18:21:38+00:00

I have following table in my database. I am trying to write a query

  • 0

I have following table in my database.

enter image description here

I am trying to write a query which returns some rows from the above table.

The returning list:

  1. Should not contain duplicates of Currency2_Id
  2. If there are duplicates of Currency2_Id found, the latest record should be returned

    For an example in above table there are two records which has Currency2_Id = 7. The latest record from those two is the record which has Date = 2012-12-28.
    So my final result should be something like this.

enter image description here

This is the query I tried.

SELECT Id, Currency1_Id, Rate, Currency2_Id, Date 
FROM currency_ex_rate_txn
GROUP BY Currency2_Id
ORDER BY Date DESC

But the resultset I get contains the record with Currency2_Id = 7 and Date = 2012-12-25 instead of the record with Currency2_Id = 7 and Date = 2012-12-28.
Any help would be appreciated.

  • 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-06-16T18:21:39+00:00Added an answer on June 16, 2026 at 6:21 pm

    Try this:

    SELECT 
      c1.Id, 
      c1.Currency1_Id, 
      c1.Rate, 
      c1.Currency2_Id, 
      c1.`Date`
    FROM currency_ex_rate_txn c1
    INNER JOIN
    (
        SELECT Currency2_Id, MAX(`date`) LatestDate
        FROM currency_ex_rate_txn
        GROUP BY Currency2_Id
    ) c2  ON c1.Currency2_Id = c2.Currency2_Id
         AND c1.`date`       = c2.LatestDAte
    ORDER BY c1.`Date` DESC;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following listbox below which binds to a database table of image
I have three mysql table from same database Db1. Three tables have following columns.
I am trying to write a query which loops through a database starting at
Hi guys I have the following query and I trying to write it in
I have the following database table object: public class Goal { @DatabaseField(generatedId = true)
I have the following table in my database. Now what I want to find
I have the following table in a SQLite3 database: CREATE TABLE overlap_results ( neighbors_of_annotation
I have the following table and sequence in my postgresql-8.4 database: CREATE TABLE complexobjectpy
Let's say I have the following database table: record_id | record_date | record_value -----------+-------------+--------------
I have the following table in my postgreSQL 8.3.14 database timestamp status 2012-03-12 19:15:01

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.