SQL 表的完整性--约束

--表的完整性 --缺省值 --若表字段未明确声明缺省值,则默认缺省值为NULL --缺省值在表定义中类型后定义的 CREATE TABLE Products ( product_no integer, name text, price numeric DEFAULT 9.99 ); DROP TABLE Products; --序列对象暂时还未建立 /*--nextval()从一个序列对象
相关文章
相关标签/搜索