Advertisement
Maks140888

Untitled

Jun 3rd, 2022
1,135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.70 KB | None | 0 0
  1. savepoint start_point1;
  2.  
  3. insert into day_week values(6,'субота');
  4.  
  5. SAVEPOINT start_point2;
  6.  
  7. insert into day_week values(7,'неділля');
  8.  
  9. SAVEPOINT start_point3;
  10.  
  11. delete from day_week;
  12.  
  13. rollback to SAVEPOINT start_point2;
  14.  
  15. rollback to SAVEPOINT start_point1;
  16.  
  17. insert into day_week values(1, 'Понеділок');
  18. insert into day_week values(2, 'Вівторок');
  19. insert into day_week values(3, 'Середа');
  20. insert into day_week values(4, 'Четвер');
  21. insert into day_week values(5, 'Пятниця');
  22. delete from day_week
  23. where id in (1,2,3);
  24.  
  25. savepoint start_point4;
  26.  
  27. insert into day_week values(7, 'неділля');
  28.  
  29. commit;
  30.  
  31. rollback to savepoint start_point4;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement