以前知道匹配只有like
select * from TableA where colum1 like 'a';
请不要忘记 下划线 _
select * from TableA where colum1 like '_a';
在oracle 中 如果要给某个对象的别名中包涵空格 请用双引号。
如: select colum1 “学 号” from Table1 succe
select colum1 学 号 from Table1 Fail