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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T11:22:04+00:00 2026-05-30T11:22:04+00:00

This error occurs in this SQLite query: select f.rid, c.title, sum(some_expression) as ratio from

  • 0

This error occurs in this SQLite query:

select f.rid, c.title, sum(some_expression) as ratio
from doesntmatter
where c.active = 1 or (ratio = 1.0 and c.active = 0
      and c.deactivated in (1, 2, 3, 4, 5)
group by f.rid

This question solves it with having clause:

select f.rid, c.title, sum(some_expression) as ratio
from doesntmatter
where c.active = 1 or (c.active = 0
      and c.deactivated in (1, 2, 3, 4, 5)
group by f.rid
having ratio = 1.0

But in my case this changes the semantics of the expression. Do you know how to achieve the expression that is in the original where clause?

  • 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-30T11:22:05+00:00Added an answer on May 30, 2026 at 11:22 am

    Basically, you can’t reference an aliased column in a where clause. Take a look at this question to see how to workaround that.

    Aditionally, you should add to the group by all non-aggregated columns present in the select statement, in this case, c.id and c.title.

    It is difficult to rewrite that query for you because the logic is a bit difficult to understand (because of the wrong group by).

    Edit:

    After a second thought, you might just need to correct the group by.

    select c.id, c.title, sum(some_expression) as ratio
    from doesntmatter
    where c.active = 1 or (c.active = 0 and c.deactivated in (1, 2, 3, 4, 5))
    group by c.id, c.title
    having ratio = 1.0
    

    Or maybe:

    select f.rid, sum(some_expression) as ratio
    from doesntmatter
    where c.active = 1 or (c.active = 0 and c.deactivated in (1, 2, 3, 4, 5))
    group by f.rid
    having ratio = 1.0
    

    I can’t help you with the previous part because I don’t know the fields nor the data of your tables nor how to interpret them. But selecting fields not present in the group by is a bad idea. Anyway, remember you can always join back to the original tables and get the info you are looking for, not just the fields displayed in the select.

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

Sidebar

Related Questions

on the cursor line this error occurs. Error: Caused by: android.database.sqlite.SQLiteException: near ): syntax
This is the error I get while trying to access a sqlite database from
i have used impersonation in this application. whenever this error occurs i required to
The error occurs when I try to do this friend std::ostream& operator<<(std::ostream& os, const
I am using the following code This error occurs : Attempted to read or
When I call Bitmap.Save function, this error occurs: A generic error occurred in GDI+.
I am currently having an issue of losing a message. This error occurs rarely,
This error occurs only in some computers. By reading the stack information, there is
This error occurs when data binding a repeater: SQL Server does not handle comparison
I keep getting this error: Invalid Signature - This error occurs when you have

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.