Computer Science, asked by avanthikabindu60, 10 months ago

Write an SQL query to fetch "FIRST_NAME" from worker table in upper case

Answers

Answered by tanmayitadepalli
4

Explanation:

upper (first_name) will convert the text to upper case

Answered by Anonymous
7

Answer:

select upper(FIRST_NAME) from worker;

# hope it helps you

please mark brainliest

Similar questions