博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sql server2008中怎样用sql语句创建数据库和数据表
阅读量:5949 次
发布时间:2019-06-19

本文共 1002 字,大约阅读时间需要 3 分钟。

这是简单用代码实现创建数据库和数据表的sql语句,如下:

--调用系统数据库--

use master

go

/***防止你要创建的数据库同名,先把它删除掉****/

if Exists(select * from dbo.sysdatabases where name='TestDB')

begin

  drop database TestDB

end

go

--创建数据库TestDB----

create databasse TestDB

on(

  --数据库的名称--

  name='testdb_mdf';

  --设置数据库存放的路径--

  filename='D:\SQL\DB\testdb_mdf.mdf';

)

log on(

  name='testdb_ldf';

  filename='D:\SQL\DB\testdb_ldf.ldf';

)

go

/***创建数据库表*****/

---使用新创建的数据库--

use TestDB

go

--创建Student表--

create table Student(

  --identity(1,1)自增,primary key是主键--

  stuId int identity(1,1) primary key,  

  stuName varchar(20) not null,

  stuAge int not null,

  stuSex varchar(2) not null,

  Address varchar(50) not null

)

go

/***数据表的添加,查询。修改、删除的操作***/

--添加操作--

insert into Student  values('张三',23,'男',‘广州’);

insert into Student(stuName,stuAge,stuSex,Address) values('李四',21,'女',‘海南’);

--查询操作--

select * from Student;

select * from Student where stuId='2';

--修改操作--

update Student set stuAge=27 where stuId='1';

--删除操作--

delete from Student where stuId='2'

转载地址:http://voixx.baihongyu.com/

你可能感兴趣的文章
再论三层架构
查看>>
nginx代理多次302(nginx Follow 302)
查看>>
Jquery教程 1.jquery的基础选择器
查看>>
我的友情链接
查看>>
Highcharts和Hinghstock图表构造参数常用属性
查看>>
模糊测试工具Simple Fuzzer
查看>>
RabbitMQ入门(六) —— 持久化
查看>>
iOS12系统应用发送邮件中的附件
查看>>
我的友情链接
查看>>
LFS学习中遇到的错误
查看>>
lnmp安装脚本
查看>>
Yarn流程、Yarn与MapReduce 1相比
查看>>
SANS:2016年网络威胁情报现状调研报告
查看>>
xlsx格式Excel的处理
查看>>
mysql create database 指定utf-8编码
查看>>
maven 生成可执行的jar的多种方式
查看>>
VS2005访问数据库超时
查看>>
iOS 开发百问(2)
查看>>
MySQL for Mac 安装和基本操作(包含后期的环境变量设置)
查看>>
Linux及windows下常见压缩程序的压缩能力对比
查看>>