三九宝宝网宝宝教育计划总结

数据库实验要SQL语言编写的

01月13日 编辑 39baobao.com

[一设计目标用C语言或C编程实现物流配送管理系统主要巩固和]首先建立一个结构体,包含以下属性:物品名称、物品编号、物品出厂地、物品配送地、配送方式、配送个数、配送金额、配送日期(年、月、日)等 然后调用STL中的list(链表),简单点的可以...+阅读

-- Create table create table Student( S_No varchar2(20), S_Name varchar2(20) not null, S_Sex varchar2(2) default '男', S_Birthday date);-- Add comments to the table comment on table Student is '学生';-- Create/Recreate primary, unique and foreign key constraints alter table Student add constraint Pri_S_No primary key (S_NO);-- Create table create table Course( C_No varchar2(20), C_Name varchar2(40), Grade number(4,1));-- Add comments to the table comment on table Course is '课程';-- Add comments to the columns comment on column Course.Grade is '分数';-- Create/Recreate primary, unique and foreign key constraints alter table Course add constraint Pri_C_No primary key (C_NO);-- Create table create table T_Course( S_no varchar2(20), C_no varchar2(20), Grade number(4,1));-- Add comments to the table comment on table T_Course is 'take the course选课信息';-- Add comments to the columns comment on column T_Course.Grade is '成绩';-- Create/Recreate primary, unique and foreign key constraints alter table MEA.T_Course add constraint For_S_No foreign key (S_NO) references Student (S_No); alter table MEA.T_Course add constraint For_C_No foreign key (C_NO) references Course (C_No);3:-- Add/modify columns alter table Student add S_Tel varchar2(20);-- Add comments to the columns comment on column Student .S_Tel is '电话';4:-- Add/modify columns alter table Course modify C_Name CVARCHAR2(20);5:INSERT INTO Student (S_No, S_Name,S_Sex, S_Birthday ) VALUES ('A001','日月哥','女',to_date('20110515','yyyyMMdd')) 其他你自己来6:update Course set Grade =Grade +1 7:-- Create/Recreate indexes create unique index PK_oo on Student(S_Birthday order by desc);8:select s.S_No, avg(tc.Grade) from Student s,T_Course tc where s.S_No=tc.S_No group by s.S_No9:delete T_Course tc where tc.S_No='A000'; delete Student s where s.S_No='A000'; 思考题自己来,我用的orcal,这都不给分的话,爆你菊花啦

以下为关联文档:

小班语言活动好看的电视教案及反思活动目标: 1、培养幼儿参与折纸活动的兴趣。 2、锻炼幼儿的手指灵活性及手眼的协调能力。 3、引导幼儿学习用长方形纸进行简单的折、粘、画,做成小小电视机。 活动准备: 范例作...

小熊请客大班语言评语怎么写一、设计思路 对于《小熊请客》这个故事,大班的幼儿大多基本掌握了故事情节,熟悉人物对话,理解了故事内容,有爱劳动的感知经验,有礼貌。对于“好吃懒做”(又谗又懒)有一定的理性基...

幼儿园面试准备一节什么样的语言课适合托小班幼儿园托班语言活动:小熊请客 活动目标: 1.乐意听老师讲故事,了解猫、狗、鸡喜欢吃的食物特性。 能乐意参与角色表演活动,体验情景游戏的快乐。 活动准备:课件 活动过程: 一、导入...

中班语言儿歌鸭宝贝反思:3。 摇摇头?你在儿歌中都听见了谁。 5。 活动筹备?故事里面都讲了几位数蛋的动物妈妈?那小朋友们就细心听好了老师念的这首儿歌,蛋里睡, 跟着妈妈嘎嘎嘎地跳下水。 活动名称,不知...

雨伞的形态用语言表达怎么表达打开,雨伞, 很美! 雨是伞的情人,伞的心容纳无数滴雨,上天注定了,伞与每一滴雨相处的时光,不会太长。 每次每次,伞的周围出现的总是不同的雨。剩下的其他雨滴,跑遍了大街小巷,向伞发出...

用汇编语言统计字符串中每个字符的个数要简单详细带解析code segment assume cs:code org 100h start:jmp begin stra db 254 strn db ? strr db 254 dup(?) arr db 254 dup(?) arrn db 254 dup(0) begin:push cs pop ds push cs...

汇编语言编程。。统计字符串的字符个数求助data segment LAD db 'abcdefghijklmn#' MUN dw 0 data ends stack segment stack db 256 dup(?) stack ends code segment assume cs:code, ds:data, ss:stack start: mov...

使用汇编语言 :统计一串字符中某一字符的个数。用debug调试data segment d1 db '字符串' ;字符串自己随便写 n db $-d1 ;字符串的字符个数 data ends stack1 segment 'stack' db 128 dup(0) stack1 ends code segment assume cs:code,d...

100分高分求sql语言的数据库实验报告以下是日期的查询 简单的例子 select * from View_Change where select * from View_Change where Updatetime>'2007-10-13' 下面是统计 select Wno,Count(Wnum) as 统计 fr...

推荐阅读
图文推荐