79104708

Date: 2024-10-19 10:40:32
Score: 0.5
Natty:
Report link

you could sort oracle table with clob column with the following query based on column size :

SELECT column1, column2, clob_column
FROM your_table
ORDER BY DBMS_LOB.GETLENGTH(clob_column) DESC;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: arash yousefi