Re: Displaying chat by punished users only to themselves (db fiddle attached) - Mailing list pgsql-general

From Alexander Farber
Subject Re: Displaying chat by punished users only to themselves (db fiddle attached)
Date
Msg-id CAADeyWgv1hmw6J21g7ehtpwvmwCW8_qrLo3v5Dbju20uuW0j5Q@mail.gmail.com
Whole thread Raw
In response to Re: Displaying chat by punished users only to themselves (db fiddle attached)  (Alexander Farber <alexander.farber@gmail.com>)
Responses Re: Displaying chat by punished users only to themselves (db fiddle attached)
List pgsql-general
Is that the right way to do it?


        WITH myself AS (
            SELECT uid
            FROM words_social
            WHERE social = in_social
            AND sid = in_sid
            LIMIT 1
        )
        SELECT
                CASE WHEN c.uid = myself.uid THEN 1 ELSE 0 END,
                c.msg
        FROM    myself
        JOIN    words_chat c ON TRUE
        JOIN    words_games g USING (gid)
        JOIN    words_users opponent ON (opponent.uid IN (g.player1, g.player2) AND opponent.uid <> myself.uid)
        WHERE   c.gid = in_gid
        -- always show myself my own chat messages
        AND     c.uid = myself.uid
        -- otherwise only show messages by not muted opponents
        OR      NOT opponent.muted
        ORDER BY c.created ASC;

pgsql-general by date:

Previous
From: Francisco Olarte
Date:
Subject: Re: Backing up a DB excluding certain tables
Next
From: Francisco Olarte
Date:
Subject: Re: Backing up a DB excluding certain tables