- 浏览: 1641 次
- 性别:
- 来自: 广州
最新评论
文章列表
参考文章链接如下
http://my.oschina.net/gaowm/blog/209246
附件中 test.sql的内容
drop table test purge;
create table test(
zipcode char(6)
);
insert into test values('12345');
commit;
--以下四种查询都有记录返回。
select * from test;
select * from test where zipcode='12345';
select * from test where zipcode='12345 ';
select * from test where zipcode='12345 ...