Write an SQL query to print the FIRST_NAME from Worker table after replacing ‘a’ with ‘A’.

The required query is:

Select REPLACE(FIRST_NAME,’a’,’A’) from Worker;

Leave a Reply