Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Query Help
Hi All,
I have a table called
user_prop
(user_id ,prop_id,prop_value)
When I do select user_id,prop_value from user_prop where prop_id in ('BDATE','SEX','CITY');
It would display like..
1234 18051999
1234 Male
1234 Toronto
Is there a way to display result like..
1234 18051999 Male Toronto --in one row..!!
Thanks.
Is there a way to display query results