oracle建表默认字段怎么设置?
用default关键字,有默认值的建表语句如下:
1
2
3
4
5
6
createtabletest
(
id number notnull,
username varchar2(10) default王五
)
;