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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T01:29:45+00:00 2026-05-14T01:29:45+00:00

the current SQL query works fine locally on MAMP 1.8.4 running MySQL 5.1.37. SELECT

  • 0

the current SQL query works fine locally on MAMP 1.8.4 running MySQL 5.1.37.

  SELECT 
    EL.log_actions, EL.log_date, EL.log_value, EL.log_type,    
    EA.admins_name, 
    EU.users_name, EU.users_matric
  FROM events_log EL
  JOIN events_users EU
    USING (users_id)          
  JOIN events_admins EA
    USING (admins_id)
  ORDER BY EL.log_id DESC
  LIMIT 0, 10

However, when I bring this query live to production server which is running MySQL 4.1.22-standard, the following error occurred (whether or not there are data in the entry).

A Database Error Occurred

Error Number: 1054

Unknown column 'sceclub_exclaim2007.EU.admins_id' in 'on clause'

SELECT EL.log_actions, EL.log_date, EL.log_value, EL.log_type, 
EA.admins_name, EU.users_name, EU.users_matric 
FROM events_log EL 
JOIN events_users EU USING (users_id) 
JOIN events_admins EA USING (admins_id) 
ORDER BY EL.log_id 
DESC LIMIT 0, 20

This is based on CodeIgniter 1.7.2 and both production and development are running the same set of database.

Database tables

events_users: users_id users_name users_credits 
  users_matric users_redeem

events_admins: admins_id admins_email admins_name 
  admins_pass admins_date admins_modified admins_last_login 

events_attendance: attendance_id users_id events_id

events_events: events_id events_name events_venue events_time 
  events_desc events_pass 

events_log:log_id admins_id log_actions log_date log_value 
  users_id log_type

I’m new to MySQL so I’m not aware of any difference in versions or what could be a possible cause, thank you in advance!

Tried googling for MySQL4 difference to no avail too. Also tried using

  SELECT 
    EL.log_actions, EL.log_date, EL.log_value, EL.log_type,    
    EA.admins_name, 
    EU.users_name, EU.users_matric
  FROM events_log EL
  JOIN events_users EU
    where EL.users_id = EU.users_id
  JOIN events_admins EA
    USING EL.admins_id = EA.admins_id
  ORDER BY EL.log_id DESC
  LIMIT 0, 10

But then I got the error in both production and development.

A Database Error Occurred

Error Number: 1064

You have an error in your SQL syntax;
check the manual that corresponds to
your MySQL server version for the
right syntax to use near ‘JOIN
events_admins EA USING EL.admins_id =
EA.admins_id ORDER BY’ at line 8

SELECT EL.log_actions, EL.log_date,
EL.log_value, EL.log_type,
EA.admins_name, EU.users_name,
EU.users_matric FROM events_log EL
JOIN events_users EU where EL.users_id
= EU.users_id JOIN events_admins EA USING EL.admins_id = EA.admins_id
ORDER BY EL.log_id DESC LIMIT 0, 20

If you can point me to some resources where I can read up more on MySQL 4 syntax to achieve the same thing effect like I did with MySQL 5 syntax, please let me know.

Thanks again!

  • 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-14T01:29:46+00:00Added an answer on May 14, 2026 at 1:29 am
     SELECT 
        EL.log_actions, EL.log_date, EL.log_value, EL.log_type,    
        EA.admins_name, 
        EU.users_name, EU.users_matric
      FROM events_log AS EL
      JOIN events_users AS EU
        ON EL.users_id = EU.users_id
      JOIN events_admins EA
        ON EL.admins_id = EA.admins_id
      ORDER BY EL.log_id DESC
      LIMIT 0, 10
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

my SQL query which works fine is select case month(timestamp_iso(STATUSDATE)) when 1 then 'January'
This SQL query was generated by Microsoft Access 2003, and works fine when run,
Here is my current sql query SELECT w.city, t.tmc, t.date, t.time, w.event, ROUND(AVG(w.Pave), 0)
I have a MySQL SQL query that selects products and the text translations: SELECT
Here's my current SQL statement: SEARCH_ALBUMS_SQL = SELECT * FROM albums WHERE title LIKE
I have an SQL query that works on older version of MySQL4 but won't
I'm using a SQL query that is similar to the following form: SELECT col1,
I have a long running SQL query inside a page that I've sped up
Running the following query in SQL Server Management Studio gives the error below. update
I have an NAnt task ship to package my current .sql scripts into 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.