skip to Main Content

Mysql – How to display the shortest name in a group?

My table looks like this: CREATE TABLE `character_unique` ( `id` int(11) NOT NULL, `name` varchar(256) NOT NULL, `category` varchar(64) DEFAULT NULL, `name_without_stop_words` varchar(320) DEFAULT NULL, `name_first_word_with_exception` varchar(320) DEFAULT NULL, `master` varchar(320) DEFAULT NULL, `nb_letter` int(11) DEFAULT NULL, `count` int(11) DEFAULT…

VIEW QUESTION
Back To Top
Search