Is there a way in MySQL to make a query that returns the number of all characters in all rows in a certain column?
For example, let's say you have a table with a column called "username". SELECT LENGTH(username) FROM tablename would just return many rows with the lengths of all the usernames. Is there a way to just return the sum of them as one row?