目次へ

解答例 - 実習課題2 - 11.6.トランザクションの定義

実習課題 2

次の表と関係のある隔離性問題とは何か? 隔離性問題とは、ロストアップデート、ダーティリード、ノンリピータブルリード、ファントムインサートのことである。

Transaction 1 Transaction 2
select avg(option_price)
  from accept_order ;
 
 
insert into accept_order
  values('1020',
         '1004',
         '104' ,
         30 ,
         100 ,
         '102' ,
         '2001-04-01'
  );
select avg(option_price)
  from accept_order ;
 

解答

ファントムインサート

↑このページの先頭へ

こちらもチェック!

PR
  • XMLDB.jp