必须会的SQL语句(二) 创建表、修改表结构、删除表

栏目: 数据库 · SQL Server · 发布时间: 7年前

内容简介:这篇文章主要介绍了sqlserver中创建表、修改表结构、删除表的sql语句,需要的朋友可以参考下

这篇文章主要介绍了sql server中创建表、修改表结构、删除表的sql语句,需要的朋友可以参考下

1.创建数据库表

--使用哪个数据库,如果不写这一句是默认的数据库,也可以用鼠标选当前数据库
use testDB
--创建表
  Create Table tablename
  (
     --id表示字段名
     --int 数据类型
     --primary key 主键
     --not null 非空
     --identity(1,1)初始值是1 每次自增长1
     id int primary key not null identity(1,1),
     --unique 唯一
     name varchar(20) not null unique
  )

2.删除表

Drop table 表名

3.修改表结构

--增加列

Alter table 表名 

Add 列名 类型

--删除列

Alter table 表名 

  drop cloumn 列名

--修改列,修改列类型

Alter table 表名

Alter column 列名 type

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

The Linux Command Line

The Linux Command Line

William E. Shotts Jr. / No Starch Press, Incorporated / 2012-1-17 / USD 39.95

You've experienced the shiny, point-and-click surface of your Linux computer-now dive below and explore its depths with the power of the command line. The Linux Command Line takes you from your very ......一起来看看 《The Linux Command Line》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

随机密码生成器
随机密码生成器

多种字符组合密码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器