首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2EE开发 >

oracle 语法有关问题,怎么搜索一个表中的字段里包含'aa'的行

2012-04-06 
oracle 语法问题,如何搜索一个表中的字段里包含aa的行oracle 语法问题,如何搜索一个表中的字段里包含aa

oracle 语法问题,如何搜索一个表中的字段里包含'aa'的行
oracle 语法问题,如何搜索一个表中的字段里包含'aa'的行

[解决办法]

SQL code
select * from table_test t where t.field like '%aa%'
[解决办法]
select * from table_test t where instr('aa',t.field )>0

如果字段不确定,就需要全文索引

[解决办法]
探讨
select * from table_test t where instr('aa',t.field )>0

如果字段不确定,就需要全文索引

[解决办法]
就like就行了
select * from table_test t where t.field like '%aa%'

[解决办法]
探讨
SQL code
select * from table_test t where t.field like '%aa%'



模糊查询,所有的数据库都一样

[解决办法]
select * from table_test t where t.field like '%aa%'

热点排行