write the sql query to print the first three characters fo FIRST NAME from worker table
Answers
Answered by
0
Answer:
SELECT FIRST_NAME AS "WORKER_NAME"
FROM Worker;
Similar questions