アウトプットができる技術者に

it's a time to take a new step !

Sybase ASE 入門 delete文で from句を利用する

  • テーブル ts1の内容を ts2の内容を参照して 削除する
delete ts1
from ts1 a, ts2 b
where a.id = b.id
注意
  • from句で副問い合わせは利用不可
  • where句にexistsは利用可