Answers for "write an sql query to print details of the workers whose first_name ends with ‘h’ and contains six alphabets."

SQL
1

Write an SQL query to print details of the Workers whose FIRST_NAME ends with ‘h’ and contains six alphabets.

Select * from Worker where FIRST_NAME like '_____h';
Posted by: Guest on December-26-2020

Code answers related to "write an sql query to print details of the workers whose first_name ends with ‘h’ and contains six alphabets."

Code answers related to "SQL"

Browse Popular Code Answers by Language