Vous pouvez utiliser regexp_like()
. Pour le tri croissant :
order by (case when regexp_like(col, '^[0-9]+$') then 1 else 2 end) asc,
col asc
Vous pouvez utiliser regexp_like()
. Pour le tri croissant :
order by (case when regexp_like(col, '^[0-9]+$') then 1 else 2 end) asc,
col asc