Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
find all customers with postal code 1010. Returns 3 customers
hint
find the phone number for the supplier with the id 11. Should be (010) 9984510
hint
list orders descending by the order date. The order with date 1998-05-06 should be at the top
hint
find all suppliers who have names longer than 20 characters. Returns 11 records
hint
length(company_name)to get the length of the namefind all customers that include the word 'MARKET' in the contact title. Should return 19 records
hint
add a customer record for
customer id is 'SHIRE'
company name is 'The Shire'
contact name is 'Bilbo Baggins'
the address is '1 Hobbit-Hole'
the city is 'Bag End'
the postal code is '111'
the country is 'Middle Earth'
hint
update Bilbo Baggins record so that the postal code changes to "11122"
hint
list orders grouped and ordered by customer company name showing the number of orders per customer company name. Rattlesnake Canyon Grocery should have 18 orders
hint
list customers by contact name and the number of orders per contact name. Sort the list by the number of orders in descending order. Jose Pavarotti should be at the top with 31 orders followed by Roland Mendal with 30 orders. Last should be Francisco Chang with 1 order
hint
list orders grouped by customer's city showing the number of orders per city. Returns 69 Records with Aachen showing 6 orders and Albuquerque showing 18 orders
hint