创建一个数据库“学生.DBF”,其表结构为:学号C(6),x姓名C(8),班级C(8),性别L,出生年月D。
1个回答
展开全部
create database Students
go
use Students
create table student
(
stuId varchar(6) primary key,
stuName varchar(8),
stuClass varchar(8),
stuSex varchar(2),
stuBirth datetime
)
go
use Students
create table student
(
stuId varchar(6) primary key,
stuName varchar(8),
stuClass varchar(8),
stuSex varchar(2),
stuBirth datetime
)
追问
你太牛了你.全部英文.
追答
create database Students
go --创建数据库 Students
use Students --使用数据库 Students
create table student 创建表 student
(
stuId varchar(6) primary key,--创建长度6的字符型 字段 stuId(学号)
stuName varchar(8), --创建长度8的字符型 字段 stuName (姓名)
stuClass varchar(8), --创建长度8的字符型 字段 stuClass (班级)
stuSex varchar(2), --创建长度2的字符型 字段 stuSex (性别)
stuBirth datetime --创建日期型 字段 stuBirth (出生年月)
)
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |