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.
我的程序返回 3 个数据集?对于 DB 测试,我们使用 DBFit。如何检索所有数据集?
使用它来获取第一个数据集
!|Store Query|CALL `USP_dbfit_tes`()|outtable| ------------ !|Query|<<outtable|
样品过程
CREATE PROCEDURE `USP_dbfit_tes`() BEGIN select 1; select 2; select 3; END