jsp中关于sqlserver临时表
能在jsp中建立临时表后然后再从临时表里查询吗?比如:StringstrUpdate="select*into#articleTempfromarticlewherepi...
能在jsp中建立临时表后然后再从临时表里查询吗?比如:
String strUpdate = "select * into #articleTemp from article where pid = 0";
PreparedStatement ps=con.prepareStatement(strUpdate);
ps.executeUpdate();
然后查询:
String sql = "select top "+ x +"* from #articleTemp where( (id not in(select top "+ y +" id from article))) ";
ResultSet rs = stm.executeQuery(sql);
执行结果说是: 对象名 '#articleTemp' 无效。
多谢指教先。
或者 怎样直接从article表里 读取 从第m行到第m+2行 并且 pid=0 的数据?
String sql = "select top "+ x +"* from #articleTemp where(pid=0 and (id not in(select top "+ y +" id from article))) ";
上述这样写的话 执行结果 。第一页 正确 。第二页就还包含应该是第一页出现的数据。百思不得其解。菜鸟求助。万分感谢。
String sql = "select top "+ x +"* from article where pid=0 and (id not in(select top "+ y +" id from article)) "; 展开
String strUpdate = "select * into #articleTemp from article where pid = 0";
PreparedStatement ps=con.prepareStatement(strUpdate);
ps.executeUpdate();
然后查询:
String sql = "select top "+ x +"* from #articleTemp where( (id not in(select top "+ y +" id from article))) ";
ResultSet rs = stm.executeQuery(sql);
执行结果说是: 对象名 '#articleTemp' 无效。
多谢指教先。
或者 怎样直接从article表里 读取 从第m行到第m+2行 并且 pid=0 的数据?
String sql = "select top "+ x +"* from #articleTemp where(pid=0 and (id not in(select top "+ y +" id from article))) ";
上述这样写的话 执行结果 。第一页 正确 。第二页就还包含应该是第一页出现的数据。百思不得其解。菜鸟求助。万分感谢。
String sql = "select top "+ x +"* from article where pid=0 and (id not in(select top "+ y +" id from article)) "; 展开
展开全部
x应该为你每一页要显示的数据量
y应该为你所在页数*每一页的数据显示量
这样,就不会出现你说的效果了
y应该为你所在页数*每一页的数据显示量
这样,就不会出现你说的效果了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
String sql = "select top "+m+2+" * from #articleTemp where pid=0 and id not in(select top "+m+" id from article)"
大的数要放在前面
从大范围里去掉前面的数据就可以了
大的数要放在前面
从大范围里去掉前面的数据就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
从article表里 读取 从第m行到第m+2行 并且 pid=0 的数据
m要求转换成字符型,下面的语句支持id可以不连续的情况
String sql = "select top 3 * FROM article
WHERE ID >=(SELECT MAX(id) FROM (SELECT TOP "+m+" id FROM article ORDER BY id) b) and pid = 0
ORDER BY ID";
m要求转换成字符型,下面的语句支持id可以不连续的情况
String sql = "select top 3 * FROM article
WHERE ID >=(SELECT MAX(id) FROM (SELECT TOP "+m+" id FROM article ORDER BY id) b) and pid = 0
ORDER BY ID";
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询