KnowledgeBoat Logo

Computer Science

Write a query to display the name of employee whose name contains 'A' as third alphabet.

SQL Queries

3 Likes

Answer

SELECT ENAME
FROM empl
WHERE ENAME LIKE '__A%' ;
Explanation

There are no employees whose name contains 'A' as the third alphabet in the empl table. Therefore, the output will be empty.

Answered By

1 Like


Related Questions