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

The Archive Base Latest Questions

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

When creating a view, the name assigned to a column is not always usable

  • 0

When creating a view, the name assigned to a column is not always usable in sqlite, in order to perform a specific operation afterwards.
For instance, I created the following view:

CREATE VIEW myview AS 
  SELECT amount, count(name), name 
    FROM mytable 
GROUP BY name 
  HAVING count(name) > 1;

Then I would like to do the following operation:

SELECT total(amount*count(name))
  FROM myview;

Unfortunately, count(name) is the name given by sqlite to the second column, hence, cannot be used in a select statement.
the PRAGMA table_info(myview) shows us that the cid to count(name) is 1, is there anyway to use this information to be able to do some computation on that column?

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

    You need to define a column alias:

    CREATE VIEW myview AS 
      SELECT amount, 
             COUNT(name) AS name_count, 
             name 
        FROM mytable 
    GROUP BY name 
      HAVING count(name) > 1;
    

    Then, you’ll be able to use:

    SELECT SUM(v.amount * v.name_count)
      FROM myview v;
    

    I changed out total for SUM, which is more consistent with other databases (SQLite aggregate functions).

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

Sidebar

Related Questions

I am creating view models for each screen in my ASP.NET MVC application. I
When creating a view and setting group by value some field, it groups only
Can rails handle creating a view without a controller? For example, let say I
Has anyone had a go at creating a view that sorts a collection? The
Is there any possibility of creating a view like the following image? I do
I am creating a split view ipad app. I have four buttons in the
I am creating a Table View in viewDidAppear, because my app requires it to
I'm in the process of creating a coverflow view for android, but I'm running
In MVVM pattern I don't want to think about the view while creating the
I creating the one UITable view with the 2 sections in with when 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.