摘要:
测试表中有六百五十八万九千多条数据 ID:主键 UUID:非聚集索引 数据量: 1. select COUNT(*) from [Chapter] 2. select COUNT(ID) from [Chapter] 3. select COUNT(UUID) from [Chapter] 4. s 阅读全文
摘要:
declare @error int set @error=0 declare @temp varchar(50) -- 保存游标查询出的字段 --定义游标 declare cursor_1 cursor for (select 字段 from 表名) --打开游标-- open cursor_1 阅读全文