Question: Create a table that groups usernames based on their first character into two categories: vowels and consonants. The resulting table should have a 'type' column

Create a table that groups usernames based on their first character into two categories: vowels and consonants. The resulting table should have a 'type' column with possible values of 'vowels' or 'consonants', and a 'count' column indicating the count of usernames in each category. The first row of the table should correspond to the 'consonants' category, displaying its count. eg: Type. |Count consonants |19 vowels |21
Tables Schema as Below:
users
columnName dataType
id int
username varchar
email varchar
remember_token varchar
created_at datetime
updated_at datetime
password_digest varchar

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!