困惑了很长时间的几个问题...(200分)

  • 主题发起人 主题发起人 7030
  • 开始时间 开始时间
7

7030

Unregistered / Unconfirmed
GUEST, unregistred user!
1.sql server 中是否有判断字符串是否可以当作sql语句执行的函数?
2.三层结构中,客户端如何判断应用服器能否被激活?(捕获异常俺知道)
3.三层结构中,客户端如何判断scktsrvr.exe是否运行?
4.这样的sql语句该如何写(不用嵌套)?
列名 id b
值 1 873
2 833
3 873
4 822
要求:取回b最大的id
 
高手!
关注问题
 
1.
exec(string)
if @@error<>0
print "not a sql command"
2.
3.
4.
select top 1 id from table order by b desc
 
4/select a.id from table a ,(select max(b) b from table) c where a.b=c.b
 
to 天真:
你的方法只能返回一行,不全,这方法用了嵌套,会大大降低速度的
 
select b,max(id) as id group by b
 
后退
顶部