Created
December 11, 2017 05:19
-
-
Save agawronski/0c445a2b1903b180766f9a5a9aa515d2 to your computer and use it in GitHub Desktop.
Look at the top 10 rows of each table in the purchasing schema.
This file contains 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 * | |
from purchasing.productvendor | |
limit 10; | |
select * | |
from purchasing.purchaseorderdetail | |
limit 10; | |
select * | |
from purchasing.purchaseorderheader | |
limit 10; | |
select * | |
from purchasing.shipmethod | |
limit 10; | |
select * | |
from purchasing.vendor | |
limit 10; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment