数据库中创建和删除表、查找表结构 、表信息

  • 切换到使用的数据库
    语法:use 数据库名
use worker
  • 创建表
create table workerinfo(
工号 varchar(10)  not null primary key,
姓名 varchar(20), 
工龄 int,
电话 varchar(20)
);
  • 表示查看表的结构,还能确定表是否存在
    语法:sp_help 表名
sp_help workerinfo
  • 查询表中的所有数据信息
    语法:select * from 表名
select * from workertinfo
  • 删除workerinfo表 DDL
drop table workerinfo

举例:切换到Library数据库,创建Customer表和book表

use Library 
go
--创建Customer表
create table Customer
(
cid char(8)not null primary key ,--主键
cname varchar(20) not null,
sex char(2),
address varchar(60),
phone char(15),
email varchar(50)
);
go
--创建book表
create table Book(
bid char(8) not null primary key,
bname varchar(40) not null,
pub varchar(20),
author1 varchar(20),
author2 varchar(20),
type varchar(20),
numinput int not null,
numstore int not null
);
go
use Library
go 
sp_help Customer;
sp_help Book;

你可能感兴趣的:(数据库)