6.update.mql 617 B

12345678910111213141516171819202122
  1. update /cache/alerts_status set status = 123, duration = 7654321 where id in ('12237946334446340014','6513184388393225798')
  2. ;
  3. select class,id,firstoccurrence,status,duration from /cache/alerts_status where id in ('12237946334446340014','6513184388393225798')
  4. /**
  5. output()
  6. equal(0,status,123)
  7. **/
  8. ;
  9. update /cache/alerts_status set status = 223, duration = 7654321 where id in ('5668036945217623512','6513184388393225798')
  10. ;
  11. select class,id,firstoccurrence,status,duration from /cache/alerts_status where id in ('5668036945217623512', '6513184388393225798')
  12. /**
  13. output()
  14. equal(0,status,223)
  15. **/
  16. ;