Skip to content

Instantly share code, notes, and snippets.

@agawronski
Created December 11, 2017 05:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agawronski/0c445a2b1903b180766f9a5a9aa515d2 to your computer and use it in GitHub Desktop.
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.
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