aph万圣节本子:会sql server的请进,急用~~

来源:百度文库 编辑:高校问答 时间:2024/05/10 11:48:33
在product数据库中建立默认r_orderdate,使其默认值为系统时间,并将其与“产品订购”表中的列“订购日期”进行绑定。

如下:

use product

create default r_orderdate as getdate()

go

exec sp_bindefault r_orderdate ,'[产品订购].[订购日期]'