I made a query that get all rooms with its name, its address, and other data.
(select replace(wm_concat( '\par \tab ' || s.address|| '\par \tab ' || s.lib || '\par \tab '), ',', '\par - ')
from t_room s)
Too long for all the data, the only one important data are the name and the address.
The fact is, 2 rooms can have the same address, so in result I don't want :
room1 address1 - room2 address1
that, I actually get, but
room1 address1 - room2 at the same address
is this possible in oracle 10?
I tried adding a distinct for the address field, but of course not possible.
Thank you.