Jump to content

Recommended Posts

I'm running a mysql select query and just found out both tables have a same column.

 

This is the column both tables have which is city_id:

 

$city_id = $row['city_id'];

 

I tried the following but it didn't work:

 

$city_id = $row['tablename.city_id'];

 

How can I do this?

You should use alias in mysql query.

 

Ex. Select table1.city_id as city_id1, table2.city_id as city_id2 from table1,table2

 

So, you will get $row['city_id1']; and $row['city_id2']

 

It will work

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.