Write an SQL query to print all Worker details from the Worker table order by FIRST_NAME Ascending.

The required query is:

Select * from Worker order by FIRST_NAME asc;

Leave a Reply