| 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
我错过了什么?根据markfink的例子,这不应该失败。