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 中的表。我必须为表中的列指定默认值1。制作表格时这很简单,但我必须使用该ALTER TABLE功能来完成,这就是我所拥有的:
1
ALTER TABLE
ALTER TABLE Stock_Qty ADD CONSTRAINT Qty_DEFAULT_Value DEFAULT (Qty 1);
它似乎不起作用。
这是正确的语法:
ALTER TABLE Stock_Qty MODIFY Qty DEFAULT 1