Write a SELECT statement to list the last and first names in last name order of students that are currently employed by the firm Electronic Engineers and have last names starting with "G".
What will be an ideal response?
```
SELECT last_name, first_name, employer
FROM student
WHERE employer = 'Electronic Engineers'
AND last_name LIKE 'G%'
ORDER BY last_name```
Computer Science & Information Technology
You might also like to view...
All supporting files that are need for a Web page are stored together when a document is saved as in ________ format
A) MHTML B) HTML C) PDF D) DOCX
Computer Science & Information Technology
Which of the following is NOT a field property?
A) Author B) Field Size C) Format D) Caption
Computer Science & Information Technology