
Big Java, Binder Ready Version: Early Objects
6th Edition
ISBN: 9781119056447
Author: Cay S. Horstmann
Publisher: WILEY
expand_more
expand_more
format_list_bulleted
Expert Solution & Answer
Chapter 24.2, Problem 3SC
Explanation of Solution
Query to find the names of all customers:
The below query is used to select the names of all customers except from Alaska and Hawaii in the “Customer” table.
SELECT Name FROM Customer WHERE State <> 'AK' AND State <> 'HI';
Explanation:
In the above query,
- “SELECT” – It is used to extract values of the “Name” field from the “Customer” table...
Expert Solution & Answer

Want to see the full answer?
Check out a sample textbook solution
Chapter 24 Solutions
Big Java, Binder Ready Version: Early Objects
Ch. 24.1 - Prob. 1SCCh. 24.1 - Prob. 2SCCh. 24.2 - Prob. 3SCCh. 24.2 - Prob. 4SCCh. 24.3 - Prob. 5SCCh. 24.3 - Prob. 6SCCh. 24.4 - Prob. 7SCCh. 24.4 - Prob. 8SCCh. 24.5 - Prob. 9SCCh. 24.5 - Prob. 10SC
Ch. 24.5 - Prob. 11SCCh. 24.5 - Prob. 12SCCh. 24 - Prob. 1RECh. 24 - Prob. 2RECh. 24 - Prob. 3RECh. 24 - Prob. 4RECh. 24 - Prob. 5RECh. 24 - Prob. 6RECh. 24 - Prob. 7RECh. 24 - Prob. 8RECh. 24 - Prob. 9RECh. 24 - Prob. 10RECh. 24 - Prob. 11RECh. 24 - Prob. 12RECh. 24 - Prob. 13RECh. 24 - Prob. 14RECh. 24 - Prob. 15RECh. 24 - Prob. 16RECh. 24 - Prob. 17RECh. 24 - Prob. 18RECh. 24 - Prob. 19RECh. 24 - Prob. 20RECh. 24 - Prob. 21RECh. 24 - Prob. 22RECh. 24 - Prob. 23RECh. 24 - Prob. 1PECh. 24 - Prob. 2PECh. 24 - Prob. 5PECh. 24 - Prob. 6PE