TALX Corporation Proposal

2. Create another SQL Statement that retrieves data from the STUDENT table for students whose last names begin with A,B, or C, and who work for Competrol Real Estate, sorted by their last names. Solution: SELECT * FROM student. WHERE (last_name like 'A%' OR last_name like 'B%' OR last_name like 'C%') AND employer = 'Competrol Real Estate'; 3. ................
................