Talk:TicketSQL/@comment-129.242.6.166-20160112162351

From Request Tracker Wiki
Revision as of 12:23, 12 January 2016 by 129.242.6.166 (talk) (Created page with "Is there no NOT operator? I am trying to exclude all tickets updated by any other users. Basically what I want to do is this: Owner = 'Nobody' AND Status = 'resolved' AND L...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Is there no NOT operator? I am trying to exclude all tickets updated by any other users. Basically what I want to do is this:

Owner = 'Nobody'

AND Status = 'resolved'

AND LastUpdatedBy = '__CurrentUser__'

AND Queue != 'A _queue'

AND NOT (UpdatedBy != '__CurrentUser__')