摘要: 1 --------------创建数据库------------------ 2 use master 3 go 4 if exists(select * from sysdatabases where name='Text001') 5 begin 6 drop database Text001 7 end 8 go 9 create database Text00110 go11 use Text00112 --1) 创建一张学生表,包含以下信息,学号,姓名,年龄,性别,家庭住址,联系电话13 create table stu 14 (15 学号... 阅读全文
posted @ 2012-03-21 15:12 Sam萨姆 阅读(422) 评论(0) 推荐(0) 编辑