Re: Retreive data from multiple columns by ['tablename.colname']

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

 



Erik Björling wrote:
Hi,

I use a query with multiple tables:
SELECT * FROM cases,status,prio  where cases.statusid=status.id && .....

I retreive the data into my variable $line like this.
while ($line = mysql_fetch_array($result)) {.....

How can I retreive data from $line without using the index value as integers for example $line[13]
I would like to write $line['cases.id'] to retreive 'id' data from the table 'cases' in a SQL-manner. But I get an error message regarding unknown index 'cases.id'.

Take a look at $line and you'll see the values are already there. $line['id'], etc. Use print_r() on $line to see it's contents.


Is there an easy solution to this? Is there another sign then '.' or should I use other names for my 'id'-columns such as c_id, s_id.... etc.?

Yes, this is recommended. Otherwise the "id" column from one table will overwrite the value from another table when it's all put into $line. Use an alias and remember that the keys do not include the table name, only the column name: $line['id'] instead of $line['table1.id'].


--
---John Holmes...

Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

php|architect: The Magazine for PHP Professionals – www.phparch.com


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


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux