Answers for "Write an SQL query to print details of the Workers whose FIRST_NAME ends with ‘a’."

0

Write an SQL query to print details of the Workers whose FIRST_NAME ends with ‘a’.

Select * from Worker where FIRST_NAME like '%a';
Posted by: Guest on July-26-2021

Code answers related to "Write an SQL query to print details of the Workers whose FIRST_NAME ends with ‘a’."

Browse Popular Code Answers by Language