Talk:TicketSQL/@comment-129.242.6.166-20160112162351: Difference between revisions
Jump to navigation
Jump to search
(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...") |
m (1 revision imported) |
||
(No difference)
|
Latest revision as of 15:53, 6 April 2016
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__')