Guest User

Untitled

a guest
Mar 18th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. update training set class = 0;
  2.  
  3. delete train1 from training train1, training train2
  4. where
  5. train1.id > train2.id and
  6. train1.message = train2.message;
  7.  
  8. update training
  9. set class = 1
  10. where
  11. (message like '%.com %' or
  12. message like '%.net %' or
  13. message like '%.de %') and
  14. message not like '%your-domain.de %' and
  15. message not like '%your-other-domain.com%' and
  16. message not like '%youtube.com%' and
  17. message not like '%facebook.com%' and
  18. class = 0;
Add Comment
Please, Sign In to add comment