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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:59:05+00:00 2026-05-26T09:59:05+00:00

I have this select statement working fine: SELECT pre, dict.char, post, score , (SELECT

  • 0

I have this select statement working fine:

SELECT 
  pre, dict.char, post, score
  , (SELECT @res := MatchPre(pre, 'test') AS var) AS mpre 
FROM dict;

It returns all of the data properly, with the result from MatchPre in a column labeled “mpre”. However, I want to only get results where mpre > 0. So, logically, I tried this:

SELECT 
  pre, dict.char, post, score
  , (SELECT @res := MatchPre(pre, 'test') AS var) AS mpre 
FROM dict 
WHERE mpre > 0;

But to no avail. I’ve tried swapping “WHERE mpre > 0” with “WHERE @res > 0”, “WHERE @res.mpre > 0”, “WHERE mpre.@res > 0”, etc, but it either throws an error or returns an empty result set despite the original where-less query giving rows with mpre values greater than 0.

What is the correct syntax for this?

  • 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-26T09:59:06+00:00Added an answer on May 26, 2026 at 9:59 am
    SELECT 
      pre, dict.char, post, score
      , (SELECT @res := MatchPre(pre, 'test') AS var) AS mpre 
    FROM dict 
    HAVING mpre > 0;
    

    You cannot use aliases in a where clause.
    You will have to use a having clause or put the select with the alias inside another outer select.

    This is because when the where clause is run, the alias is not yet evaluated.
    The having run after all the select,where, group by, from and joins are finished and does not suffer this limitation.
    Having cannot use an index though.
    If you want to use an index use a sub-select.

    SELECT sub.* FROM
      (SELECT 
         pre, dict.char, post, score
         , (SELECT @res := MatchPre(pre, 'test') AS var) AS mpre 
       FROM dict ) sub
     WHERE sub.mpre > 0
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this working SQL statement: select oriseqs.newID from oriseqs WHERE oriseqs.singlets=1 AND oriseqs.newID
I have a site with a SELECT statement like this: SELECT * FROM MyTable
I have this very simple sql statement: SELECT max_dose FROM psychotropes WHERE (patient_meds.psychotrope =
i have sql statement like this SELECT DISTINCT results_sp_08.material_number FROM results_sp_08 INNER JOIN courses
I have a SQL statement similar to this: SELECT COUNT(*) AS foo, SUM(foo) AS
I have a SQL-statement like this: SELECT name FROM users WHERE deleted = 0;
If i have a parameterized SQL statement like this: SELECT * FROM table WHERE
I have this mysql query using PHP and first part is working fine, but
I am trying to solve this problem. I have a series of SELECT statements
i have this SELECT COUNT(1) cnt, a.auther_id FROM `posts` a LEFT JOIN users u

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.