Advertisement
BakerMan

Swap Organizers (TEC/ECP)

Oct 17th, 2012
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.49 KB | None | 0 0
  1. -- The "wp_" table prefix may be different in your
  2. -- installation, however it is the postmeta table
  3. -- that we wish to alter here
  4. UPDATE wp_postmeta
  5.  
  6. -- 182 is the "target ID" - the ID of the organizer
  7. -- we wish to keep
  8. SET meta_value = '182'
  9.  
  10. -- This means we are interested in the current
  11. -- organizer ID
  12. WHERE meta_key = '_eventOrganizerID'
  13. AND (
  14.     -- This is essentially a list of organizers
  15.     -- we wish to dispose of (using their IDs)
  16.     meta_value = '208' OR
  17.     meta_value = '204'
  18. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement