简体   繁体   English

DB中不存在Fitnesse字段

[英]Fitnesse field not present in DB

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

The one above works but the one below doesn't. 上面的一种有效,但下面的一种无效。

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

The message I got was 我收到的消息是

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

Did I missing something obilvous? 我是否错过了一些过时的事? according to the markfink's example this should not have failed. 根据markfink的示例,这应该不会失败。

Try to use a simple Query table: 尝试使用简单的查询表:

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

If this doesn't help try to follow the query examples on this page: https://dbfit.github.io/dbfit/docs/reference.html#query 如果这样做没有帮助,请尝试遵循此页面上的查询示例: https : //dbfit.github.io/dbfit/docs/reference.html#query

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM