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 * from my_table where length( Name ) = ( select max( length( Name ) ) from my_table limit 1 );
It this involves two table scans, and so might not be very fast !