Answers for "how to find the longest string in column sql"

SQL
0

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 "how to find the longest string in column sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language