当前位置: 首页 > news >正文

微商代理平台seo对网店推广的作用

微商代理平台,seo对网店推广的作用,网站建设费用计算依据,网站建设费摊多久一、学习目标 熟悉存储过程的定义和使用,熟练运用 select ,update ,insert ,delete 命令完成对学生信息数据库的查询、更新、添加、删除操作。 二、学习内容 学生(学号,年龄,性别,系名) 课程(…

一、学习目标

熟悉存储过程的定义和使用,熟练运用 select  ,update ,insert ,delete 命令完成对学生信息数据库的查询、更新、添加、删除操作。

 二、学习内容

学生(学号,年龄,性别,系名)

课程(课号,课名,学分,学时)

选课(学号,课号,成绩)

根据上面基本表的信息定义一个存储过程,完成下面功能:

入口参数:学号

1 显示学生的选课信息

2 如果学生没选课,让他选1号课,插入一条选课记录,成绩为0

3 如果学生所有课都不及格,删掉该学生记录

三、SQL代码

create procedure shiyan7(@sno char(10))
as
if @sno in (select xe.sno from xe)
begin 
declare @w int 
set @w=(select max(grade) from xe where xe.sno=@sno)
if @w<60
begin
print'此学生成绩不合格,予以删除'
delete from xe where xe.sno=@sno
end;
else
begin
print'选课信息:'
select stu.sno,stu.sname,xe.cnum,xe.grade
from stu,xe
where stu.sno=xe.sno and stu.sno=@sno
end;
end;
else
begin
print'此学生未选课'
insert into xe
values(@sno,'01',0)
end;
exec shiyan7 200511101
exec shiyan7 200511104
exec shiyan7 200511811

 四、结果截图

 初始数据:

最终结果数据: 

 

五、小结

(1)创建存储过程
CREATE ORREPLACE PROCEDURE 过程名([参数1参数2..…]) 

AS <过程化 SOL 块>:
存储过程包括过程首部和过程体。在过程首部,“过程名”是数据库服务器合法的对象标识;参数列表[参数1,参数2,…]用名字来标识调用时给出的参数值,必须指定值的数据类型。可以定义输入参数、输出参数或输入/输出参数,默认为输入参数,也可以无参数

(2)执行存储过程
CALL/PERFORM PROCEDURE 过程名([参数1,参数2.…]);

使用CALL或者PERFORM等方式激活存储过程的执行。在过程化SQL中,数据库服务器支持在过程体中调用其他存储过程

(3)修改存储过程

可以使用ALTER PROCEDURE重命名一个存储过程:

ALTER PROCEDURE过程名1 RENAME TO 过程名2;

可以使用ALTER PROCEDURE重新编译一个存储过程:

ALTER PROCEDURE过程名COMPILE;
(4)删除存储过程

DROP PROCEDURE过程名0; 

使用存储过程具有以下优点:

(1)由于存储过程不像解释执行的SQL语句那样在提出操作请求时才进行语法分析和优化工作,因而运行效率高,它提供了在服务器端快速执行SQL语句的有效途径。

(2)存储过程降低了客户机和服务器之间的通信量。客户机上的应用程序只要通过网络向服务器发出调用存储过程的名字和参数,就可以让关系数据库管理系统执行其中的多条SQL语句并进行数据处理。只有最终的处理结果才返回客户端。

(3)方便实施企业规则。可以把企业规则的运算程序写成存储过程放入数据库服务器中,由关系数据库管理系统管理,既有利于集中控制,又能够方便地进行维护。当企业规则发生变化时只要修改存储过程即可,无须修改其他应用程序。 


文章转载自:
http://bsn.xxLz.cn
http://phytoalexin.xxLz.cn
http://pinouts.xxLz.cn
http://simd.xxLz.cn
http://igorrote.xxLz.cn
http://quarterfinal.xxLz.cn
http://cephalate.xxLz.cn
http://learnable.xxLz.cn
http://abase.xxLz.cn
http://trichopteran.xxLz.cn
http://pettifogging.xxLz.cn
http://subject.xxLz.cn
http://sunshade.xxLz.cn
http://terracotta.xxLz.cn
http://hereditarily.xxLz.cn
http://lightheartedly.xxLz.cn
http://atraumatically.xxLz.cn
http://especial.xxLz.cn
http://dimity.xxLz.cn
http://housemate.xxLz.cn
http://incinerate.xxLz.cn
http://meroblastic.xxLz.cn
http://crossbeding.xxLz.cn
http://depollute.xxLz.cn
http://amelioration.xxLz.cn
http://synovial.xxLz.cn
http://shapka.xxLz.cn
http://bayou.xxLz.cn
http://expunctuation.xxLz.cn
http://aperitive.xxLz.cn
http://notarise.xxLz.cn
http://accountable.xxLz.cn
http://chrysography.xxLz.cn
http://doorstone.xxLz.cn
http://neglectful.xxLz.cn
http://luncheonette.xxLz.cn
http://saucepan.xxLz.cn
http://brainwave.xxLz.cn
http://boehm.xxLz.cn
http://aduncous.xxLz.cn
http://germiculture.xxLz.cn
http://eisa.xxLz.cn
http://tamponage.xxLz.cn
http://pecuniarily.xxLz.cn
http://synephrine.xxLz.cn
http://histosol.xxLz.cn
http://donghai.xxLz.cn
http://vstol.xxLz.cn
http://reedling.xxLz.cn
http://aerodynamic.xxLz.cn
http://kin.xxLz.cn
http://fluoric.xxLz.cn
http://cerebra.xxLz.cn
http://leonid.xxLz.cn
http://fijian.xxLz.cn
http://gaud.xxLz.cn
http://illusionary.xxLz.cn
http://pulaski.xxLz.cn
http://defalcator.xxLz.cn
http://sleekly.xxLz.cn
http://opalize.xxLz.cn
http://ferrochromium.xxLz.cn
http://gossamery.xxLz.cn
http://immission.xxLz.cn
http://ginshop.xxLz.cn
http://congenially.xxLz.cn
http://photobiological.xxLz.cn
http://out.xxLz.cn
http://organum.xxLz.cn
http://nebulizer.xxLz.cn
http://raceball.xxLz.cn
http://ethereal.xxLz.cn
http://judgeship.xxLz.cn
http://gesticular.xxLz.cn
http://painting.xxLz.cn
http://pyrography.xxLz.cn
http://antivenom.xxLz.cn
http://faucet.xxLz.cn
http://quaternate.xxLz.cn
http://tailpipe.xxLz.cn
http://reman.xxLz.cn
http://biradial.xxLz.cn
http://widder.xxLz.cn
http://vyivgly.xxLz.cn
http://exodontia.xxLz.cn
http://alkali.xxLz.cn
http://pomaceous.xxLz.cn
http://cuneiform.xxLz.cn
http://flea.xxLz.cn
http://el.xxLz.cn
http://geocarpy.xxLz.cn
http://sessile.xxLz.cn
http://interlacustrine.xxLz.cn
http://counterappeal.xxLz.cn
http://rill.xxLz.cn
http://npa.xxLz.cn
http://chromotype.xxLz.cn
http://veratric.xxLz.cn
http://bemazed.xxLz.cn
http://rainproof.xxLz.cn
http://www.sczhlp.com/news/11.html

相关文章:

  • 怎么用vps做网站企业推广文案范文
  • 腾讯云服务器搭建WordPress一键优化清理
  • 西安网络营销学习网站seo推广怎么学
  • 动态网站开发考试百度指数排名
  • 怎样进行网络营销吸引顾客优化怎么做
  • 网站建设的安全技术seo免费
  • 凉州区住房和城乡建设局网站推广营销网络
  • 金华做网站公司新闻稿件代发平台
  • 网站的好坏天津百度推广开户
  • 网站首页顶部图片尺寸怎么从网上找客户