Is it possible in a view to skip usernames that have a 1 or 0?
username id week value
jay 1 1 1
jay 1 1 0
jay 1 1 1
jay 1 1 0
jim 1 1 4
jim 1 1 4
jim 1 1 4
jim 1 1 4
jane 2 1 1
jane 2 1 4
jane 2 1 4
jane 2 1 4
For example we would completely skip jay and jane in this example above and not return any of their records for that username .
The week will always be the same number. The could be the same username per ID. I want to skip the records per username per ID when they have just ONE 1 or 0 in the value field.
Is this possible to do?
username id week value
jay 1 1 1
jay 1 1 0
jay 1 1 1
jay 1 1 0
jim 1 1 4
jim 1 1 4
jim 1 1 4
jim 1 1 4
jane 2 1 1
jane 2 1 4
jane 2 1 4
jane 2 1 4
For example we would completely skip jay and jane in this example above and not return any of their records for that username .
The week will always be the same number. The could be the same username per ID. I want to skip the records per username per ID when they have just ONE 1 or 0 in the value field.
Is this possible to do?