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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:58:33+00:00 2026-05-28T13:58:33+00:00

my tables (structures, surface) have two Index-Rows, planet_id and tile_id. I want to join

  • 0

my tables (structures, surface) have two Index-Rows, “planet_id” and “tile_id”. I want to join them, but i get a SQL-Error: “Column ‘planet_id’ in where clause is ambiguous”.

$this->db   ->select('*')
    ->from('structures')
    ->join('surface', 'structures.planet_id=surface.planet_id AND structures.tile_id=surface.tile_id')
    ->where('planet_id', $p->planet_id);

$query = $this->db->get();

Leads to:

Error Number: 1052

Column 'planet_id' in where clause is ambiguous

SELECT * FROM (`structures`) JOIN `surface` ON `structures`.`planet_id`=`surface`.`planet_id` AND structures.tile_id=surface.tile_id WHERE `planet_id` = '13247'
  • 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-28T13:58:33+00:00Added an answer on May 28, 2026 at 1:58 pm

    Since you have planet_id in two tables, you’ll need to choose which you’re applying the where to.

    So, try this:

    $this->db->select('*')
        ->from('structures')
        ->join('surface', 'structures.planet_id=surface.planet_id AND structures.tile_id=surface.tile_id')
        ->where('structures.planet_id', $p->planet_id);
    
    $query = $this->db->get();
    

    It might seem silly, because your join requires both planet_id‘s to be the same, but the where doesn’t know that, and needs specific instructions.

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

Sidebar

Related Questions

I have two tables with identical structures handling distinct data. I want to merge
I have two tables and I have to join it. table structures are tblproducts
I have two tables with the following (simplified) structures: table "Factors" which holds data
I have 4 different tables that I want to join. The tables are structured
I have two tables TABLE1 and TABLE2 with identical structures. I need a trigger
I have two tables salary_structures and payheads. Below are my table structures: create_table payheads,
I have two data tables which have a primary key column in common but
I have a LINQ-to-SQL data context in which two tables exist with different names
I have multiple tables with different structures but all share a common column, my
I have 2 tables in SQL Server 2005 db with structures represented as such:

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.