Employee Names

  • + 0 comments

    psql mysql sql

    SELECT name 
    FROM Employee
    WHERE name BETWEEN 'A%' AND 'Z%'
    ORDER BY name ASC;