use practice
go
create table od02(
oid int,
odate datetime CONSTRAINT [DF_odate] DEFAULT (getdate()),
oname varchar(30))
go
--使用default 關鍵字來新增資料
insert od02
values(1, default,'xbox')
--使用資料行清單 但不含有預設值的資料行
insert od02(oid, oname)
values(2, 'ps3')
--檢視資料
select * from od02
沒有留言:
張貼留言