Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 Pervasive Control Center 比较陌生,我想知道是否要测试存储过程以查看其结果,如何简单地选择该存储过程?我有:
Select SP_test_getMeasure06
我确定我遗漏了一些东西,因为我知道这是合法的,我的语法必须稍微偏离。
提前致谢!
您可以使用Call或执行存储过程Exec。例如:
Call
Exec
exec SP_test_getMeasure06
您需要确保您的存储过程使用该RETURNS子句来取回数据。有关更多信息,请查看存储过程文档。
RETURNS