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