/* ------------------------------------------------------------------------- Yu Cheng ICS 321 Assignment 1 September 18, 2008 PART 4.3 Implement an SQL script that will list the Skill(s) required for the organization. Sort in ascending order by Billet Title. ------------------------------------------------------------------------- */ USE DB9975 GO SELECT Title, Description FROM BILLET ORDER BY Title GO