Hello,
I've a little problem with GROUP BY for my query:
SELECT
`rel_experience _client`.`clien t_ref`,
`client`.`id`,
`rel_experience _client`.`exper ience_ref`,
`experience`.`i d` AS `id1`,
`experience`.`t itre_fr`,
`client`.`libel le`
FROM
`rel_experience _client`
INNER JOIN `client` `client1` ON (`rel_experienc e_client`.`clie nt_ref` =
`client1`.`id`)
INNER JOIN `experience` ON (`rel_experienc e_client`.`expe rience_ref` =
`experience`.`i d`)
RIGHT OUTER JOIN `client` ON (`rel_experienc e_client`.`clie nt_ref` =
`client`.`id`)
ORDER BY
`client`.`libel le`
Here's the result:
-> http://www.metadelic.com/rapport.htm
And here's what I wish to have without including the colmn "client_ref " for
the result:
-> http://www.metadelic.com/rapport.htm#result
I can't work it out...
Any suggestion on how to do?
Regards, Dom
I've a little problem with GROUP BY for my query:
SELECT
`rel_experience _client`.`clien t_ref`,
`client`.`id`,
`rel_experience _client`.`exper ience_ref`,
`experience`.`i d` AS `id1`,
`experience`.`t itre_fr`,
`client`.`libel le`
FROM
`rel_experience _client`
INNER JOIN `client` `client1` ON (`rel_experienc e_client`.`clie nt_ref` =
`client1`.`id`)
INNER JOIN `experience` ON (`rel_experienc e_client`.`expe rience_ref` =
`experience`.`i d`)
RIGHT OUTER JOIN `client` ON (`rel_experienc e_client`.`clie nt_ref` =
`client`.`id`)
ORDER BY
`client`.`libel le`
Here's the result:
-> http://www.metadelic.com/rapport.htm
And here's what I wish to have without including the colmn "client_ref " for
the result:
-> http://www.metadelic.com/rapport.htm#result
I can't work it out...
Any suggestion on how to do?
Regards, Dom
Comment