Created
September 7, 2017 14:41
-
-
Save rcackerman/f87afbd405c296839a70b5c9f3df87b4 to your computer and use it in GitHub Desktop.
test postgresql bool_or
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 TEMP TABLE test_bool_or ( | |
| file_number varchar(50), | |
| dob character varying | |
| ); | |
| INSERT INTO test_bool_or (file_number, dob) | |
| VALUES ('124ny', NULL) | |
| , ('1345', 'test') | |
| , ('124ny', 'test') | |
| , ('345', NULL); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment