User transaction in table : RollBack : Transaction SQL / MySQL


SQL / MySQL » Transaction » RollBack »

 

User transaction in table



/*
mysql> select * from Student;
+-----------+------------+
| StudentID | Name       |
+-----------+------------+
|         1 | JJ Smith   |
|         2 | Joe Yin    |
|         3 | John Lee   |
|         4 | Jacky Chen |
+-----------+------------+
4 rows in set (0.03 sec)


*/

Drop table Student;

CREATE TABLE Student (
   StudentID INT NOT NULL PRIMARY KEY,
   Name      VARCHAR(50NOT NULL
)TYPE = InnoDB;


INSERT INTO Student (StudentID,NameVALUES (1,'JJ Smith');
INSERT INTO Student (StudentID,NameVALUES (2,'Joe Yin');
INSERT INTO Student (StudentID,NameVALUES (3,'John Lee');
INSERT INTO Student (StudentID,NameVALUES (4,'Jacky Chen');
  
  
  
BEGIN;

INSERT INTO Student (StudentID, NameVALUES (98'Anne');
INSERT INTO Student (StudentID, NameVALUES (99'Julian');

ROLLBACK;

select from Student;


           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

SQL / MySQL

 Navioo Transaction
» RollBack