0
| 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.

Mike Stockdale
  • 5,256
  • 3
  • 29
  • 33
logger
  • 1,983
  • 5
  • 31
  • 57

1 Answers1

0

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

Markus L
  • 932
  • 2
  • 20
  • 38