If I say:
select max(length(Name)) from my_table
I get the result as 18, but I want the concerned data also. So if I say:
s
Select URColumnName From URTableName Where length(URColumnName ) IN (Select max(length(URColumnName)) From URTableName);
This will give you the records in that particular column which has the maximum length.