err000001.test
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test some error conditions
  3. #
  4. drop table if exists t1;
  5. !$1146 insert into t1 values(1);
  6. !$1146 delete from t1;
  7. !$1146 update t1 set a=1;
  8. create table t1 (a int);
  9. !$1054 select count(test.t1.b) from t1;
  10. !$1109 select count(not_existing_database.t1) from t1;
  11. !$1109 select count(not_existing_database.t1.a) from t1;
  12. !$1044 select count(not_existing_database.t1.a) from not_existing_database.t1;
  13. !$1054 select 1 from t1 order by 2;
  14. !$1054 select 1 from t1 group by 2;
  15. !$1054 select 1 from t1 order by t1.b;
  16. !$1054 select count(*),b from t1;
  17. drop table t1;