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

MySQL数据库

开发平台:

Visual C++

  1. # Initialise
  2. --disable_warnings
  3. drop table if exists t1,t2;
  4. --enable_warnings
  5. #
  6. # Testing of the <=> operator
  7. #
  8. #
  9. # First some simple tests
  10. #
  11. select 0<=>0,0.0<=>0.0,"A"<=>"A",NULL<=>NULL;
  12. select 1<=>0,0<=>NULL,NULL<=>0;
  13. select 1.0<=>0.0,0.0<=>NULL,NULL<=>0.0;
  14. select "A"<=>"B","A"<=>NULL,NULL<=>"A";
  15. #
  16. # Test with tables
  17. #
  18. create table t1 (id int, value int);
  19. create table t2 (id int, value int);
  20. insert into t1 values (1,null);
  21. insert into t2 values (1,null);
  22. select t1.*, t2.*, t1.value<=>t2.value from t1, t2 where t1.id=t2.id and t1.id=1;
  23. select * from t1 where id <=>id;
  24. select * from t1 where value <=> value;
  25. select * from t1 where id <=> value or value<=>id;
  26. drop table t1,t2;
  27. # End of 4.1 tests