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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:13:52+00:00 2026-05-26T21:13:52+00:00

I am trying to inlude the total count as a column in the query:

  • 0

I am trying to inlude the total count as a column in the query:

SELECT un.user, un.role
FROM [Unique] un group by user, role;

In this query I have 2 columns but I want to add a third column as the total rows calculated in the above query.

  • 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-26T21:13:53+00:00Added an answer on May 26, 2026 at 9:13 pm

    This works under MS Access (and is very similar to what would work under Oracle and other databases):

    SELECT
        un.user,
        un.role,
        (
            SELECT COUNT(*)
            FROM (
                SELECT un1.user, un1.role
                FROM [Unique] un1 group by user, role
            )
        )
    FROM [Unique] un group by user, role;
    

    Here is the actual Oracle syntax:

    SELECT
        un."user",
        un.role,
        (
            SELECT COUNT(*)
            FROM (
                SELECT un1."user", un1.role
                FROM "Unique" un1 group by "user", role
            )
        )
    FROM "Unique" un group by "user", role;
    

    For the reference, here is the SQL Server specific solution, using CTE:

    WITH Q([user], role) AS (
        SELECT un.[user], un.role
        FROM [Unique] un group by [user], role
    )
    SELECT *, (SELECT COUNT(*) FROM Q)
    FROM Q
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this query: SELECT I1 & , & I2 AS Item_set, Round(Sum([T1].Fuzzy_Value)/Count(*),15) AS
I'm trying to create a LINQ query (or queries) that count the total number
I have been trying to execute this program on my MinGW, through Code::Blocks: #include
I'm really struggling with this query. I have 4 tables (http://oberto.co.nz/db-sql.png): Invoice_Payement, Invoice, Client
Trying to include ThickBox (from http://jquery.com/demo/thickbox/ ) in an ASP.NET application. Visual Studio is
I am trying to include a value from a database table within the value
I am trying to include the Zend_Service_Amazon_S3 file by using require_once 'Zend/Service/Amazon/S3.php'; I have
I'm trying to chain two named_scopes in my User model. The first: named_scope :commentors,
I'm a total C n00b trying to teach myself C off K&R. My question
I was trying to use sed to count all the lines based on a

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.