0
| script | Db Slim Select Query | select cust_name from customer where cust_id = 70903 |
| check | data; | cust_name | 0 | JAMES SMITH |

上面的一个有效,但下面的一个无效。

|Query:Db Slim Select Query | select cust_id, cust_name from customer where cust_id = 70903 |
| cust_id | cust_name |
| 70903   | JAMES SMITH |

我收到的信息是

Query:Db Slim Select Query  select cust_id, cust_name from customer where cust_id = 70903
cust_id                     cust_name
[70903] missing             JAMES SMITH
field cust_id not present   field cust_name not present

我错过了什么?根据markfink的例子,这不应该失败。

4

1 回答 1

0

尝试使用一个简单的查询表:

| query   | select cust_id, cust_name from customer where cust_id = 70903 |
| cust_id | cust_name   |
| 70903   | JAMES SMITH |

如果这没有帮助,请尝试遵循此页面上的查询示例:https ://dbfit.github.io/dbfit/docs/reference.html#query

于 2016-08-04T08:20:24.440 回答