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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:22:32+00:00 2026-05-27T22:22:32+00:00

CASE WHEN [col1] = ‘s’ THEN 8 WHEN [col1] = ‘t’ THEN 6 WHEN

  • 0
CASE 
          WHEN [col1] = 's' THEN 8
          WHEN [col1] = 't' THEN 6 
          WHEN [col1] = 'u' THEN 9
          WHEN [col2] = 'v' THEN 1
.......
END AS product,
DENSE_RANK() OVER (ORDER BY product ASC) AS [Rank]
FROM dbo.TableA

DENSE_RANK() is not working on calculated column Product, showing

Invalid column name ‘product’.

How to apply DENSE_RANK() on product?

  • 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-27T22:22:32+00:00Added an answer on May 27, 2026 at 10:22 pm

    You could do something like this:

    SELECT 
      *, 
      DENSE_RANK() over (order by product)
    FROM (
    SELECT 
      CASE 
              WHEN [col1] = 's' THEN 8
              WHEN [col1] = 't' THEN 6 
              WHEN [col1] = 'u' THEN 9
              WHEN [col2] = 'v' THEN 1
     ...
    END AS product
    FROM dbo.TableA
    ) t
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This works: SELECT (CASE WHEN x = 'value' THEN a.col1 ELSE nvl(a.col1, a.col2) END)
When I do this: select col1,case when [pivot1]=1 then '-' else '' end [pivot1],
CREATE VIEW View1 AS SELECT Col1, Col2, dbo.fn1(col2) as Col3 FROM TestTable /* --Instead
I have written a query like this CASE WHEN [col1] = 's' THEN '1'
UPDATE `Table1` SET `col3` = CASE `col1` WHEN 'ABC' THEN '2' WHEN 'BCD' THEN
I'm trying to compare two columns from different columns. Ex: Select a.Col1, b.Col1, CASE
I have the following query: SELECT col1, col2, col3 FROM tb1 WHERE col4=ANY( SELECT
When I run this in sqldeveloper: SELECT CASE WHEN TABLE1.COL1 IS NOT NULL THEN
select col1, col2 into name1, name2 from table1 where col1=col; m_sub := 'Subject ';
case i of 0..99 : Function-call('bobo') ; 100..209 : function-smell('Hobo'); 210..300 : function-yikes('argh'); end;

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.