Created
July 26, 2017 07:55
-
-
Save AlphaWong/49a776a422473dc51c289436023e72ef to your computer and use it in GitHub Desktop.
sql leaning
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
| # OR statment | |
| SELECT * FROM TABLE 1 WHERE col1 = 1 OR col1 = 2 | |
| # UNION ALL | |
| SELECT * FROM TABLE 1 WHERE col1 = 1 | |
| UNION ALL | |
| SELECT * FROM TABLE 1 WHERE col1 = 2 | |
| # Reference | |
| # https://www.w3schools.com/sql/sql_union.asp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment