| 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
我是否遗漏了一些obilvous?根据markfink的例子,这不应该失败。
答案 0 :(得分: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