Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
単体テストのために、Oracle 用のダミーの更新コマンドを記述できるかどうかを知りたいです。
に似たもの
SELECT * FROM DUAL
どこかにテーブルがあると仮定すると、
UPDATE mytable SET myfield = 'foo' WHERE 1 = 0
オプション 1: ダミー テーブルを作成し、行を挿入します。出来上がり、更新できます。
オプション 2: ダミーのビューを作成し、何もしない「更新の代わりに」トリガーを追加します。