Skip to content

Instantly share code, notes, and snippets.

@rcackerman
Created September 7, 2017 14:41
Show Gist options
  • Select an option

  • Save rcackerman/f87afbd405c296839a70b5c9f3df87b4 to your computer and use it in GitHub Desktop.

Select an option

Save rcackerman/f87afbd405c296839a70b5c9f3df87b4 to your computer and use it in GitHub Desktop.
test postgresql bool_or
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