首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

怎么转换代码

2012-02-28 
如何转换代码?我在SQL 2005里面写的语句C# code str select *,ROW_NUMBER() over(order by TimeST) ROW

如何转换代码?
我在SQL 2005里面写的语句

C# code
 str = "select *,ROW_NUMBER() over(order by TimeST) ROWID into temp" + k + " from " + TName2[k] + " where TimeST <'" + dateTime.ToString() + "'";         str += "select * from temp"+k+" where ROWID between 0 and 200";

如何转换为SQL2000语句

[解决办法]
str="select *,ROWID=(select count(1) from "+TName2[k]+" where t.id<id) into temp"+k+" from "+Tname2[k]+" t where TimeST <'" + dateTime.ToString() + "'";
str += "select * from temp"+k+" where ROWID between 0 and 200";

热点排行