Created
April 17, 2015 19:44
-
-
Save nkaretnikov/8c1f844941f62a806097 to your computer and use it in GitHub Desktop.
Notification preferences
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
id | user | type | delivery | |
----+------+---------------+---------- | |
1 | 1 | NotifReply | Website | |
2 | 1 | NotifReply | Email | |
3 | 2 | NotifRethread | Website | |
4 | 3 | NotifWiki | Website | |
5 | 3 | NotifWiki | Email |
select "user", type from user_notification_pref
group by type,"user"
having bool_or(delivery='Website') and bool_or(delivery='Email');
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here's one way: