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

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Test of like
  3. #
  4. create table t1 (a varchar(10), key(a));
  5. insert into t1 values ("a"),("abc"),("abcd"),("hello"),("test");
  6. select * from t1 where a like "abc%"; 
  7. select * from t1 where a like "test%"; 
  8. select * from t1 where a like "te_t"; 
  9. drop table t1;