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

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

本文简介:选择自 lastking 的 blog

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

create table [dbo].[car_info] (

       [csn] [int] not null ,

       [type] [char] (10) collate chinese_prc_ci_as not null ,

       [state] [char] (10) collate chinese_prc_ci_as not null ,

       [mile] [int] not null

) on [primary]

go

 

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

create table [dbo].[client_info] (

       [cid] [int] not null ,

       [cname] [varchar] (20) collate chinese_prc_ci_as not null ,

       [caddress] [varchar] (100) collate chinese_prc_ci_as not null ,

       [cphone] [varchar] (20) collate chinese_prc_ci_as not null ,

       [email] [varchar] (100) collate chinese_prc_ci_as not null ,

       [id_number] [varchar] (20) collate chinese_prc_ci_as not null

) on [primary]

go

 

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

create table [dbo].[price_info] (

       [type] [char] (10) collate chinese_prc_ci_as not null ,

       [state] [char] (10) collate chinese_prc_ci_as not null ,

       [price] [int] not null

) on [primary]

go

 

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

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

go top