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.
NOT NULL ドメインを持つ 3 つのフィールドがあります。NULL データを受け入れるように変更するにはどうすればよいですか?
frais_inscription NUMBER(6,2) NOT NULL, date_paiement DATE NOT NULL, type_paiement VARCHAR2(15) NOT NULL,
null を受け入れるようにテーブルの列を変更しようとしているだけですか? 一般的な構文は次のとおりです。
alter table yourtable modify (yourfield number(6,2) null);
SQL フィドルのデモ