6 lines
134 B
SQL
6 lines
134 B
SQL
USE CS457_PA4;
|
|
select * from Flights;
|
|
begin transaction;
|
|
update Flights set status = 1 where seat = 22;
|
|
commit;
|
|
select * from Flights; |