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

  • SEARCH
  • Home
  • 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 8680211
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T21:11:25+00:00 2026-06-12T21:11:25+00:00

I have a table similar to this Table(Id int, PropertyId int, UserId int, AccesedOn

  • 0

I have a table similar to this

Table(Id int, PropertyId int, UserId int, AccesedOn datetime)

So the table can have value for one property for one user, but different times.

Eg.
1,100,5, 2012-10-16 16:24:48
2,100,5, 2012-10-17 11:22:00
3,100,5, 2012-10-18 17:10:05

What I am trying here is to select distinct properties for specific user, but order by most recent access time.

Also I am joining this table to three other tables which result in providing duplicate values. Therefore I have to use DISTINCT command.

Problem I have is since I doing the orderby AccesedOn, it need to appear on select statement which doesn’t brings the distinct values since the AccesedOn column have different values.

For above example it should return only 3,100,5, 2012-10-18 17:10:05

Any suggestions to overcome this?

  • 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-12T21:11:27+00:00Added an answer on June 12, 2026 at 9:11 pm
    ;WITH CTE as(
    select *,ROW_NUMBER() over (partition by PropertyId,UserId  order by AccesedOn desc) as rn
    from table1)
    
    select * from CTE where rn=1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a data.table object similar to this one library(data.table) c <- data.table(CO =
In my database I have created a table similar to this: dbo.Words WordId INT
Assuming that I have objects similar to this: public class User { public int
I have a table similar to this +--+-----+----+ |ID|Entry|Exit| +--+-----+----+ |18|32154|NULL| +--+-----+----+ |19|NULL |NULL|
i have a table which looks similar to this <asp:TableRow><asp:TableCell>Question 1</asp:TableCell><asp:TableCell ID =Question1Text></asp:TableCell></asp:TableRow> <asp:TableRow><asp:TableCell
I have a table with contents that look similar to this: id | title
I have a table that has records with a structure similar to this.. ID
I have a couple of tables with similar structures like this: <table> <tbody> <tr>content</tr>
I have a table that looks similar to this... +-------------+-------------+ | Field | Type
I have a SqlServer2005 table Group similar to the following: Id (PK, int) Name

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.