博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sql 语句
阅读量:4916 次
发布时间:2019-06-11

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

create database StuInfo

create table Course(

Cno char(10) ,Cname char(30),Ccredit real
)
create table Score ([Cno] [nchar](10) NULL,
 [Sno] [char](10) NULL,
 [Grade] [real] NULL)
 CREATE TABLE Student(
 [Sno] [char](10) NOT NULL,
 [Sname] [nchar](10) NULL,
 [Sex] [char](10) NULL,
 [Birthday] [datetime] NULL,
 [Sdept] [nchar](10) NULL,
 [memo] [varchar](200) NULL)
insert into Student values('008','过放电','男','2012-5-2','如见','')
alter table Student add  memo varchar(200)
alter table Student  drop column memo
alter table Score alter column Sno char(10)
alter table Student alter column Sno char(10) not null
alter table Student add primary key(Sno)
alter table Student alter column memo varchar(300)
alter table Score ADD FOREIGN KEY(Sno)  REFERENCES  Student  (Sno)
delete from Student where Sno='008'

alter table Score  add constraint fk_sc1 foreign key(Sno) references Student(Sno)

转载于:https://www.cnblogs.com/czsl/archive/2012/11/07/2758332.html

你可能感兴趣的文章
Maximum number of WAL files in the pg_xlog directory (1)
查看>>
dva源码解析(三)
查看>>
Linux常用命令大全
查看>>
leetcode244- Shortest Word Distance II- medium
查看>>
Sql Server 行转列 学员分数 例子
查看>>
Piwik环境搭建及安装详细指引
查看>>
Android Socket编程【转】http://duguyidao.iteye.com/blog/1069736
查看>>
VC++实现读取本地已登录的QQ号及应用代码
查看>>
cmd命令添加python库没有权限问题
查看>>
深入理解php中的ini配置(1)
查看>>
js实现下拉框联动
查看>>
02方法 课后作业1
查看>>
ps中如何用抽出功能扣取头发
查看>>
win8 通过 媒体中心密钥 永久激活win8专业版
查看>>
在Tomato中加入 自动断开空联接功能
查看>>
Qt可执行程序写入版本信息
查看>>
程序随感备录
查看>>
Jenkins_rpm安装
查看>>
异常处理的相关主题
查看>>
类似微信选择添加删除图片的demo
查看>>