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

The Archive Base Latest Questions

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

I have the following issue. I have declared a variable based on ID value,

  • 0

I have the following issue. I have declared a variable based on ID value, but there are two different values that have my data. This is what I retreive:

    entry_template_id   entry_template_name book_display_name   entry_count value_count null_value_count    null_percentage followed_value_count    followed_null_value_count   followed_null_percentage    
                   9    Loading             Reporting            10            530           78              0.147169811320      520                      78                         0.150000000000 
                   19   Loading             Reporting            1              53            8              0.150943396226       53                       8                         0.150943396226

I want to retrive just one row with ID like (9, 19), same template_name, same display_name, SUM (entry_count), SUM(value_count), SUM(null_value_count), AVG(null_percentage), SUM(followed_value_count), SUM(followed_nulls_value_count), AVG(followed_null_percentage).

Can you please help me with the syntax?

Thank you!

  • 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-12T04:11:37+00:00Added an answer on June 12, 2026 at 4:11 am

    Provided that you want to group by name, this should work:

    SELECT 
    STUFF((SELECT ', ' + CAST(entry_template_id AS varchar(50))
           FROM Entries t2 where t1.entry_template_name = t2.entry_template_name 
           FOR XML PATH('')), 1, 2, '') Ids, 
    MAX(entry_template_name) entry_template_name, 
    MAX(book_display_name) book_display_name, 
    SUM(entry_count) entry_count, SUM(value_count) value_count, 
    SUM(null_value_count) null_value_count, 
    AVG(null_percentage) null_percentage, 
    SUM(followed_value_count) followed_value_count, 
    SUM(followed_null_value_count) followed_null_value_count, 
    AVG(followed_null_percentage) followed_null_percentage
    FROM Entries t1
    GROUP BY entry_template_name
    

    See this question for further explanation.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following issue: A java object contains two arrays of core datastore
I have the following issue: I open a dialog box with jQuery UI. This
The following code has been created from a different post, but I now have
In order to debug an issue in my code, I have declared the following
I have the following issue related to iterating over an associative array of strings
I have the following issue and I would like to know what exactly happens.
I have the following issue with a UTF8 files structured as following: FIELD1§FIELD2§FIELD3§FIELD4 Looking
I have the following issue: I have a splash like window coming with my
I am using Django 1.3 and have the following issue: In the Admin list
I'm just starting with Object Oriented PHP and I have the following issue: I

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.