全文预览

NBA球员球队信息管理系统项目设计方案

上传者:火锅鸡 |  格式:doc  |  页数:22 |  大小:0KB

文档介绍
Int Not Null 总冠军数 5. 赛区名 C har 10 赛区表 FK Not Null 赛区名 6. 赛区名次 I nt Not Null 赛区名次 10 球队表建表 T-SQL 语句-- 创建球队表 create table team ( 球队名 char ( 20) not null primary key , 城市 char ( 20) not null, 球员数 int not null, 总冠军数 int not null, 赛区名 char ( 10) null, 赛区名次 int not null, ) 球员表列名数据类型宽度是否主外键是否为空描述 1. 球员姓名 Varchar 20 PK Not Null 球员姓名 2.年龄 I nt Not Null 年龄 3.身高 I nt Not Null 身高 4.体重 Int Not Null 体重 5.国籍 Varchar 10 Not Null 国籍 6.位置 V archar 10 Not Null 位置 7. 球队名 V archar 20 球队表 FK Not Null 球队名 8.年薪 I nt Not Null 年薪 9. 加盟时间 D atime Not Null 加盟时间球员表建表 T-SQL 语句-- 创建球员表 create table player ( 球员姓名 char ( 20) not null primary key , 年龄 int not null, 身高 int not null, 体重 int not null, 国籍 char ( 10) not null, 位置 char ( 10) not null, 球队名 char ( 20) not null, 年薪 int not null, 加盟时间 datetime not null, ) -- 创建外键球队名

收藏

分享

举报
下载此文档