Last active
May 28, 2020 15:12
-
-
Save Manuela82/c1de05782093a92273fb3da592e4ef55 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Select Name | |
| From Artist; | |
| Select * | |
| From Invoice | |
| Where Invoice.BillingCountry='Germany'; | |
| Select count (*) | |
| From Album; | |
| Select min(milliseconds) | |
| From Track; | |
| Select max(milliseconds) | |
| From Track; | |
| SELECT avg (UnitPrice), sum (UnitPrice) | |
| From Track; | |
| Select count (*) | |
| From Customer | |
| Where customer.Country='France'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment