Computer Science, asked by Irshadirshu0313, 8 months ago

Create a worker db and create tables in third normal form. Write an SQL query to fetch “FIRST_NAME” from Worker table in upper case.​

Answers

Answered by Anonymous
0

Answer:

SQL query to fetch “FIRST_NAME” from Worker table in upper case.​

Explanation:

select upper(FIRST_NAME) from Worker;

#hope it helps you

please mark brainliest

Similar questions