Computer Science, asked by grishmamody58, 7 months ago

Write an SQL query to fetch details for Workers with the first name as ""Maria"" and ""Awais"" from Worker table

Answers

Answered by luisecubero77
0

Answer:

Explanation:

select * from workers where firstname LIKE '%Maria%' and '%Awais%'

Similar questions