sqlserver语句用法
语句中包含增删查改,字段自增的修改。
图片素材来源网络
语句命令:
数据表
命令行,详解
--创建数据库suu
create database suu
--使用数据表suu
use suu
--创建表Student
create table Student
(
stuid varchar(10) null,
Sneme varchar (20) not null,
Sage int not null,
Ssex char(10) not null
)
--给表增加自增 stuid列
alter table student drop column [stuid ] --删除原来的stuid不是自增的字段
--表student新增 [stuid]列并设为自增,类型为int
alter table student add [stuid] int identity(1,1)
--给表Student增加数据
insert into Student ('Sneme','Sage','Ssex')values
('张1',12,'男'),
('张2',22,'女')
--清空Student表中数据
delete from Student
--给表Student查询数据
select * from Student
--增加Course课程表
create table Course
(
CourseID varchar(10) not null,
Cname varchar(30) not null
)
--增加Teacher教师表
create table Teacher
(
TeacherID varchar(10) not null,
Tname varchar(30) not null
)
--增加SCe成绩表
create table SCe
(
ID INT not null,
SCStudent varchar(30) not null,
SCCourse varchar(30) not null
)
--删除SCe数据表,整张表删除
drop table SCe