select
concat('\"',NVL(NVL(A.col1),''),'\"|',
'\"',NVL(col2,''),'\"|',
'\"',NVL(case when
length(trim(col3))>0 then SHIP
else Col7 end,''),'\"|',
'\"',NVL(col4,''),'\"|')
as `Mycol1,Mycol2,Mycol4,Mycol5' from TableA A left outer join TableB B
on A.Col5 = B.Col5 ;
在这个结果上,我怎样才能按col3排序?
1条答案
按热度按时间flseospp1#
嵌套按排序的结果
col3
然后在外部选择所需的列。