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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T08:46:38+00:00 2026-06-18T08:46:38+00:00

I have a table: Type (PK) Year (PK) Value Default 2000 1 Default 2001

  • 0

I have a table:

Type (PK)         Year (PK)    Value
Default           2000         1
Default           2001         2
UserFooAdjusted   2001         3
UserBarAdjusted   2001         4

What is the fastest SQL query that returns distinct years and if there are two rows with the same year then the user adjusted value is returned? There are multiple users. The query returns data for one user. Example result:

Year    Value
2000    1
2001    3

I’ve thougt about A UNION B but how do I always keep the duplicate from B? Maybe a better solution would be to divide the current table into two tables: one would contain default values and the other would contain user adjusted vaules?

  • 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-18T08:46:39+00:00Added an answer on June 18, 2026 at 8:46 am

    Assuming that there are only two types: Default and UserAdjusted, you can use Common Table Expression and Window Functions, in sql server.

    WITH recordList
    AS
    (
        SELECT   YEAR, VALUE,
                 ROW_NUMBER() OVER (PARTITION BY  YEAR
                                    ORDER BY TYPE DESC) rn
        FROM    tableName
    )
    SELECT  YEAR, VALUE
    FROM    recordList
    WHERE   rn = 1
    
    • SQLFiddle Demo
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have defined a table type PL/SQL variable and added some data there. create
I have the field: APP_DATE (smalldatetime) I'm doing this query: INSERT INTO table (TYPE,
I have a table that contains a column that is XML data type. I
I have a table that look like that projectID , year , jan ,
I have an old FoxPro program that does a SQL query which includes the
I have SQL tables: id_details year-month type (only have 2 values , income and
I have table: id name type where type is 1 or 2 I need
I have a table declaration: TYPE PERSON_TYPE AS OBJECT (ID NUMBER(38), NAME VARCHAR2(20)); TYPE
I have a table Title Name Type ------------------------------------------------ T1 A Primary T1 B Primary
I have a user-defined table type. I want to check it's existence before editing

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.