文件名称:使用游标CURSOR举例-数据库原理及设计
文件大小:256KB
文件格式:PPT
更新时间:2024-05-15 15:59:47
数据库
使用游标CURSOR举例 Declare @title_id tid, @type char(12), @price money Open books_csr Fetch books_csr into @title_id, @type, @price While @@sqlstatus != 2 Begin if @@sqlstatus = 1 begin raiserror 30001 ‘select failed’ return end if @type= ‘business’ select @title_id, @type, @price, convert(money, @price*1.08) else if @type = ‘mod_cook’ select @title_id, @type, @price fetch books_csr into @title_id, @type, @price End