汽车租赁公司CIS数据库系统的设计[10]

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 lastking 的 blog

/****** object:  table [dbo].[provider_info]    script date: 2004-9-11 14:41:52 ******/

create table [dbo].[provider_info] (

       [pname] [char] (20) collate chinese_prc_ci_as not null ,

       [pphone] [char] (20) collate chinese_prc_ci_as not null ,

       [pcount] [int] not null ,

       [ptype] [char] (10) collate chinese_prc_ci_as not null

) on [primary]

go

 

/****** object:  table [dbo].[reserve_info]    script date: 2004-9-11 14:41:52 ******/

create table [dbo].[reserve_info] (

       [cid] [int] not null ,

       [csn] [int] not null ,

       [bdate] [datetime] not null ,

       [rdate] [datetime] not null

) on [primary]

go

 

alter table [dbo].[car_info] with nocheck add

       constraint [pk_car_info] primary key  clustered

       (

              [csn]

       )  on [primary]

go

 

alter table [dbo].[client_info] with nocheck add

       constraint [pk_client_info] primary key  clustered

       (

              [cid]

本文关键:汽车租赁公司CIS数据库系统的设计
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top