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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T01:49:38+00:00 2026-06-17T01:49:38+00:00

I have authentication system which gets permissions from MySQL database. CREATE TEMPORARY TABLE db.temp

  • 0

I have authentication system which gets permissions from MySQL database.

CREATE TEMPORARY TABLE db.temp (authority VARCHAR(100));
INSERT INTO db.temp (authority) SELECT blog.authors.id FROM db.authors;
UPDATE db.temp SET authority=CONCAT("AUTH_",authority);

SELECT authority FROM db.temp
UNION
SELECT authority FROM db.authorities_real

This script works fine when executed from command line, but in Views, use of temporary tables is not allowed. Is there any way to do what i want without them?

  • 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-06-17T01:49:39+00:00Added an answer on June 17, 2026 at 1:49 am

    Why not just UNION using the authors table:

    SELECT CONCAT('AUTH_',blog.authors.id)
    FROM db.authors
    UNION 
    SELECT authority 
    FROM db.authorities_real
    

    Instead of creating your temp table, you will just use the db.authors table in the UNION. Doing it this way you do not have to use a temp table.

    The UNION will remove any duplicates from the query. If you don’t mind the duplicates or do not expect any then I would use a UNION ALL

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

Sidebar

Related Questions

I am editing someone else's PHP, and they have an 'authentication' system in which
I have a database which has form authentication tables for an website [let say
I have this class LDAP which gets users from AD. It works locally, but
Everyday, I have to go through a web based authentication system (firewall) which works
So, I'm working with a really old system which uses a person's mysql database
I'm using spring MVC, and I have a custom authentication/security system that I had
I have a Node.js web server running on an embedded Linux system. For authentication
I have authentication logic that uses cookies. The model attributes are initialized from cookies,
I'm developing an API which will also have an authentication/authorization component. Anybody, regardless of
I need to have web application which actually consist from few separate wars unified

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.