i have the following query(SQL
)
select x from Test
group by x
having count(x)>1;
i want to concatenate the result in one row, any idea.
note: for simple query i have user wm_concat
function and it works fine, but it does not work
for above query may be because grouping.
any help please?