⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 +ϩ

📁 介绍了数据库方面的基础知识
💻
字号:
作者:Ray
email: xu__lei@21cn.com
日期:00-3-24 下午 11:00:25
declare <cursor_name> scroll cursor for
    select <fields_list> from <tables_list> where <conditions>
open <cursor_name>
fetch absolute N+1 from <cursor_name> into <vars_list>
while @@fetch_status=0
    begin
        insert <another_table> (<fields_list>) values (<vars_list>)
        fetch next from <cursor_name> into <vars_list>
    end
close <cursor_name>
decllocate <cursor_name>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -