山东大学数据库实验1(2021年最新版)

Posted weixin_47373497

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了山东大学数据库实验1(2021年最新版)相关的知识,希望对你有一定的参考价值。

山东大学数据库实验1(2021年最新版)


creat table test1_student
        (  sid         char(12)  not null,
           name     varchar(10) not null,
           sex        char(2),
           age       int,
           birthday   date,
           dname     varchar(30),
           class        varchar(10) )
create table test1_course
        (  cid  char(6) not null,
           name varchar(40)  not null,
           fcid    char(6),
           credit  numeric(4,1))
create table test1_student_course
        (  sid  char(20) not null,
           cid   char(6)  not null,
           score  numeric(5,1),
           tid  char(6),
           sctime date )
insert into test1_student values(200800020101,’王欣’,’女’,19,date1994-02-02,’计算机学院’,2010);
insert into test1_student values(200800020102,’李华’,’女’,20,date1995-03-03,’软件学院’,2009);
insert into test1_course values(300001,'数据结构',null,2);

insert into test1_course values(300002,'数据库',300001,2.5);

Insert into test1_student_course values(200800020101,300001,91.5,100101);

Insert into test1_student_course values(200800020101,300002,92.6,100102);

create table a as 
select distinct sid 
from test1_student_course;
create table b as
Select distinct sid
from test1_student
minus
select sid
from a;
create view test2_01 as
select test1_student.sid,name
from test1_student cross join b
where (test1_student.sid = b.sid);

create view test2_01 as
select test1_student.sid,name
from test1_student CROSS JOIN b
where (test1_student.sid = b.sid);





以上是关于山东大学数据库实验1(2021年最新版)的主要内容,如果未能解决你的问题,请参考以下文章

山东大学数据库实验6-2021年最新版

山东大学数据库实验2(2021年最新版)

山东大学数据库实验5(2021年最新版)

山东大学数据库实验4(2021最新版)

山东大学软件学院数据库系统实验——基于华为RDS for MySQL数据库的实验

2021大学生计算机实验总结报告