Answers for "find longest string in column sql"

SQL
1

how to print longest name in sql

select top 1 Name, len(Name) as city_length from tblPerson order by city_length desc
Posted by: Guest on June-29-2021

Code answers related to "find longest string in column sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language