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でそれを行うことができますか?
CREATE TABLE suppliers ( supplier_id numeric(4), supplier_name varchar2(50), CONSTRAINT check_supplier_id ***CHECK (supplier_id BETWEEN 100 and 9999)*** );