首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

ch10-12.zip

行业研究 3.49KB 1 需要积分: 1
立即下载

资源介绍:

ch10-12.zip
use library go --创建帐户表bank-- if exists(select * from sys.objects where name='bank') drop table bank create table bank( customerName char(10), --顾客姓名 currentMoney money --当前余额 ) go /**//*--添加约束,帐户不能少于元--*/ alter table bank add constraint CK_currentMoney check(currentMoney>=1) /**//*--插入测试数据--*/ insert into bank(customerName,currentMoney) select '张三',1000 union select '李四',1 select * from bank go /**//*--使用事务--*/ use library go --恢复原来的数据 --update bank set currentMoney=currentMoney-1000 where customerName='李' set nocount on --不显示受影响的行数 print '查看转帐事务前的余额' select * from bank go /**//*--开始事务--*/ begin transaction declare @errorSum int --定义变量,用于累计事务执行过程中的错误 /**//*--转帐--*/ update bank set currentMoney=currentMoney-800 where customerName='张三' set @errorSum=@errorSum+@@error --累计是否有错误 update bank set currentMoney=currentMoney+800 where customerName='李四' set @errorSum=@errorSum+@@error --累计是否有错误 print '查看转帐事务过程中的余额' select * from bank /**//*--根据是否有错误,确定事务是提交还是回滚--*/ if @errorSum>0 begin print '交易失败,回滚事务.' rollback transaction end else begin print '交易成功,提交事务,写入硬盘,永久保存!' commit transaction end go print '查看转帐后的余额' select * from bank go

资源文件列表:

ch10-12.zip 大约有12个文件
  1. ch10-key/实践10-3-1.sql 79B
  2. ch10-key/实践10-3-2.sql 219B
  3. ch10-key/实践10-3-3.sql 243B
  4. ch10-key/实践10-3-4.sql 336B
  5. ch10-key/实践10-3-5.sql 234B
  6. ch10-key/实践10-3-6.sql 298B
  7. ch11-key/实践11-3-1.sql 61B
  8. ch11-key/实践11-3-2.sql 222B
  9. ch11-key/实践11-3-3.sql 111B
  10. ch11-key/实践11-3-4.sql 64B
  11. ch11-key/实践11-3-5.sql 470B
  12. ch12-key/实践11-4.sql 1.4KB
0评论
提交 加载更多评论
其他资源 spring-boot-2.2.x源码
github下载太慢,上传一下spring-boot-2.2.x的源码
1729217903264_12306题目.zip
1729217903264_12306题目.zip
logback的jar包
logback的jar包
IjkPlayer 0.8.0 版本64位的so文件已上传
IjkPlayer 0.8.0 版本64位的so文件已上传
梦幻西游道人20241021f
梦幻西游道人是梦幻西游里面的一个NPC,主要是刷全服最实惠的高级兽决和其他很好用的比较贵的东西,在长安城、傲来国、长寿村中的任意一个场景出现,一般会出现30分钟,不过东西一般都被秒刷。 梦幻西游道人出现时间解析如下: 1.梦幻西游道人出现时间一直都保持着一年出现两次的规律,即2、3月份的元宵节期间来一次,9月份的教师节期间出现一次。 2.云游道人每个整点(0:00至7:00不出现)会在长安城、傲来国、长寿村中的任意一个场景出现,每次出现后停留时间为30分钟。
基于pygame的简易游戏框架.zip
基于pygame的简易游戏框架.zip
446441809262673jspm教案管理系统fuc7d.zip
446441809262673jspm教案管理系统fuc7d.zip
mac版本下的nvm包
mac版本下的nvm包
mac版本下的nvm包