Re: Query for two fields with the same name

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



NOT a php question.

Kevin Murphy wrote:
This is probably a simple question, but I can't seem to find the answer online.

I'm using this query:

$connection = "select * from connection, pr WHERE connection.area_id = '$gateway_link' and connection.pr_id = pr.id";

doing "SELECT * FROM bla" is not recommended, better to actually specify _just_
the fields you need.

"SELECT c.id AS cid, p.id AS pid FROM connection AS c, pr AS p WHERE ... "

this stuff can be found in the mysql docs.


Both tables have a field called ID but they have different information in them. $row['id'] gets me the one from the table called "pr" but I need to call the ID from the table connection.


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux