题:取表table中100条-200条之间数据 方法1:临时表 代码如下: select top 200 * into #aa from table order by time– 将top m笔插入 临时表 set rowcount 100 select * from #aa order by time desc –drop table #aa –删除临时表 方法2: 代码如下: select top 100 * from (select top 200 * from table orde
代码如下:#!/bin/bash#name: print number from 100 to 200for i in $(seq 100 200)doecho $idone
您可能感兴趣的文章:shell脚本打印国际象棋棋盘linux shell之控制台打印各种颜色字体和背景的实现方法shell中使用echo打印彩色字体和彩色背景的方法shell打印给定日期的日历