I have table A with the following definition in MySQL
where c_id refers to another table B with the following definition
So, I exit the following request
select group_concat(cname) as list from A join B using (cid) where t_id="something";
But I get the following error
Unknown column "cid" in from clause
I tried changing it to "c_id", but this does not seem to work.
Any help is appreciated.
thanks
mysql
Shenoy tinny
source share