In this SQL Query example, i’ll show you How to Write a query to display the last name of employees whose first name have exactly 5 characters.
SQL Query:
1 2 3 | SELECT name FROM students WHERE name LIKE '_____'; |
In this SQL Query example, i’ll show you How to Write a query to display the last name of employees whose first name have exactly 5 characters.
SQL Query:
1 2 3 | SELECT name FROM students WHERE name LIKE '_____'; |