errors.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1;
  2. insert into t1 values(1);
  3. ERROR 42S02: Table 'test.t1' doesn't exist
  4. delete from t1;
  5. ERROR 42S02: Table 'test.t1' doesn't exist
  6. update t1 set a=1;
  7. ERROR 42S02: Table 'test.t1' doesn't exist
  8. create table t1 (a int);
  9. select count(test.t1.b) from t1;
  10. ERROR 42S22: Unknown column 'test.t1.b' in 'field list'
  11. select count(not_existing_database.t1) from t1;
  12. ERROR 42S02: Unknown table 'not_existing_database' in field list
  13. select count(not_existing_database.t1.a) from t1;
  14. ERROR 42S02: Unknown table 'not_existing_database.t1' in field list
  15. select count(not_existing_database.t1.a) from not_existing_database.t1;
  16. Got one of the listed errors
  17. select 1 from t1 order by 2;
  18. ERROR 42S22: Unknown column '2' in 'order clause'
  19. select 1 from t1 group by 2;
  20. ERROR 42S22: Unknown column '2' in 'group statement'
  21. select 1 from t1 order by t1.b;
  22. ERROR 42S22: Unknown column 't1.b' in 'order clause'
  23. select count(*),b from t1;
  24. ERROR 42S22: Unknown column 'b' in 'field list'
  25. drop table t1;