ALTER PROCEDURE dbo.jqglive
  
 
AS
/* SET NOCOUNT ON */
select Value as v1,datetime as t1 from A where tagname='1abc'  

  select Value as v2,datetime as t2 from Al where tagname='2abc'   
RETURN 执行结果
v1                        t1                      
------------------------- ----------------------- 
119.148162841797          2010-12-7 16:50:25      
v2                        t2                      
------------------------- ----------------------- 
151.544982910156          2010-12-7 16:50:25      
没有更多的结果。
(返回 2 行)
@RETURN_VALUE = 0
完成 dbo."jqglive" 运行。
但是Al中只有v1,t1两个fields,没有v2,t2,delphi中就没办法用v2,请大侠帮忙啊,谢谢!