简体   繁体   中英

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.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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