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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T23:26:24+00:00 2026-05-22T23:26:24+00:00

I have this database query: select scheduled_hike_id , hike_date , hike_title , hike_group_id ,

  • 0

I have this database query:

select      scheduled_hike_id 
        ,   hike_date 
        ,   hike_title 
        ,   hike_group_id 
        ,   hike_privacy 
        ,   hike_description 
        ,   DAYOFMONTH(hike_date) 
        ,   DAYNAME(hike_date) 
        ,   YEAR(hike_date) 
        ,   MONTH(hike_date) 
from        scheduled_hikes 
where       is_cancelled is null 
and         hike_date > DATE_ADD(NOW(), INTERVAL -1 DAY) 
and         show_on_home_page = 1  
order by    hike_date limit 4

It returns what I expected. When I add a clause “and hike_privacy != 3” it returns MUCH fewers results.

The other values in the column are NULL, 1, 2

Any ideas why the != 3 isn’t working as I expected? Also, <3 is giving similarly unexpected results. I am using MySQL

  • 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-22T23:26:24+00:00Added an answer on May 22, 2026 at 11:26 pm

    If hike_privacy is null, it won’t match hike_privacy != 3.

    Try: and (hike_privacy != 3 or hike_privacy is null)

    Nulls never match non “null style” comparisons.

    Note: Make sure you use brackets around your “OR” terms! In SQL, OR takes precedence, so without the brackets it would parsed as if it was coded like this (note the position of the brackets):

    where   (       is_cancelled is null 
                and hike_date > DATE_ADD(NOW(), INTERVAL -1 DAY) 
                and show_on_home_page = 1 
                and hike_privacy != 3
            ) 
    or      hike_privacy is null
    

    which is quite different from what we want, which is:

    where       is_cancelled is null 
            and hike_date > DATE_ADD(NOW(), INTERVAL -1 DAY) 
            and show_on_home_page = 1 
            and (       
                        hike_privacy != 3 
                    or hike_privacy is null
                )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this database query SELECT * FROM (`metadata` im) INNER JOIN `content` ic
I have this query $query_return = database::query(SELECT * FROM tw ORDER BY time DESC);
I have this query: SELECT device, COUNT(*) FROM database.table GROUP BY device HAVING count(*)
If I have this code (which is from their docs) $query = DB::query(Database::SELECT, 'SELECT
Suppose that I have a database query which looks like below - select name,
I have this code converting a mysql query to json: $sth = mysql_query('SELECT *
In my Iphone App I have created this query: SELECT * FROM visuel where
I have this query: SELECT COUNT(*) as clicks, DATE_FORMAT(FROM_UNIXTIME(click_date), '%w %M %Y') as point
I have this query: SELECT I1 & , & I2 AS Item_set, Round(Sum([T1].Fuzzy_Value)/Count(*),15) AS
I have this code: $query = $this->db->query(SELECT * FROM . DB_PREFIX . manufacturer m

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.