我需要一些帮助来制定 Oracle 中的数据。我举个例子——
我有一个带有名称列的表客户。
Customer
Name
Ashish
Amit
Sunny
Bob.
我想以奇数名称与偶数名称相邻的格式输出;输出将是
Customer
Name1 Name2
Ashish Amit
Sunny Bob
等等...
我尝试了以下查询,但它没有给我所需的输出。
select name,
case Mod(rownum,2)
when 1 then name
end col1,
case Mod(rownum,2)
when 0 then name
end col2
from Customer