Last active
December 21, 2015 13:30
-
-
Save randyzwitch/6313253 to your computer and use it in GitHub Desktop.
Build airline view to remove bad records
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
-- Create view to "remove" 22 bad records from our table | |
create view vw_airline as | |
select * from airline | |
where uniquecarrier <> "UniqueCarrier"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment