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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:16:03+00:00 2026-05-28T01:16:03+00:00

Not sure if mySQL allows for this, but am curious if it is. I

  • 0

Not sure if mySQL allows for this, but am curious if it is.

I have a simple ACL db, there are channels and users. Some users have access to specific channels, others have access to all of them. My preferred method would not be to have a row in the permissions table for each user’s channel, but to specify that if the channel id column in a user’s row is NULL then they have access to any channel. In other words…

channels
1 | channelA
2 | channelB
etc...

users_access
1 | NULL // this user has access to all channels
2 | 2 // this user only has access to channel 2

Is there a way to write a select that returns 1 and 2 for user 1 (based on the NULL) and just 2 for user 2?

Again… I recognize that the alternative design is to simply have a unique row in the user’s table for each channel they have the rights to, but for various reasons that I don’t wish to get into, I’d prefer to have a global NULL access value.

TIA

  • 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-28T01:16:04+00:00Added an answer on May 28, 2026 at 1:16 am
    SELECT 
        uc.user_id
        ch.chanell_id
    FROM
        chanells AS ch
      JOIN 
        users_access AS uc
          ON uc.channel_id = ch.channel_id
    
    UNION ALL
    
    SELECT 
        uc.user_id
        ch.chanell_id
    FROM
        chanells AS ch
      CROSS JOIN 
        users_access AS uc
    WHERE uc.channel_id IS NULL  
    

    or:

    SELECT 
        uc.user_id
        ch.chanell_id
    FROM
        chanells AS ch
      JOIN 
        users_access AS uc
          ON uc.channel_id = ch.channel_id
          OR uc.channel_id IS NULL 
    

    You could also restructure your tables, keeping the users_access for the information about users with access to specific channels and adding a users_global_access for users with access to all channels (possibly with just one column, user_id, or with other relevant info, like start_date, etc.)

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

Sidebar

Related Questions

I'm not sure why these have to be unique, but from reading the MySQL
Not sure how to ask this, but i'll give it a try: I have
I'm not even sure if this is quite possible to do with MySQL, but
I'm not sure if this is possible in one mysql query so I might
Not sure if anyone has experience this issue. I have a TextBox that I
I have a mysql database and some php that allows you to create an
I am not sure the best way to go about this, basically I have
I'm sure this is a really simple, obvious answer, but my brain is fried
I asked this question a little earlier today but am not sure as to
Not sure if I've worded my title correctly but here goes. I have a

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.