摘要:
【cursor】游标:用于循环表行数据,类似指针 格式如下: declare tempIndex cursor for (select * from table) --定义游标 open tempIndex --打开游标 fetch next from tempIndex into @x --抓取下 阅读全文
摘要:
假设一组数据:人员进出刷卡数据表【SwingCard】 想要变成如下:一进一出为一组横着排放,缺少数据的补null MenID Door1 Door2 1 In null 1 In Out 1 In Out 1 null Out 想要变成如下:一进一出为一组横着排放,缺少数据的补null 实现: 阅读全文