Created
May 8, 2016 04:15
-
-
Save benadaba/25c1b0796333ae9e1454359949a90045 to your computer and use it in GitHub Desktop.
Teradata Sql Scratchpad - Look at Raw Data.sql
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 * | |
FROM deptinfo | |
SAMPLE 10 | |
ORDER BY dept ASC; | |
SELECT TOP 50 * | |
FROM skstinfo; | |
SELECT TOP 10* | |
FROM skstinfo_fix; | |
SELECT * | |
FROM skuinfo | |
SAMPLE 20; | |
SELECT TOP 20* | |
FROM store_msa; | |
SELECT * | |
FROM STRINFO | |
ORDER BY CITY ASC; | |
SELECT TOP 50 * | |
FROM TRNSACT | |
ORDER BY SALEDATE DESC; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment