table contents:
store_id store_name
-------- ----------------------
101 xx
101 yy
101 zz
102 sss
102 hhh
I need the following output:
store_id store_name
-------- ----------------------
101 xx, yy, zz
102 sss, hhh
i need a simple select query without using procedures, functions
i have only select privileges
store_id store_name
-------- ----------------------
101 xx
101 yy
101 zz
102 sss
102 hhh
I need the following output:
store_id store_name
-------- ----------------------
101 xx, yy, zz
102 sss, hhh
i need a simple select query without using procedures, functions
i have only select privileges
Comment