select * from all_tables where table_name like '%zhidao%'
LIKE 操作符用于在 WHERE 子句中搜索列中的指定模式。
LIKE 操作符
LIKE 操作符用于在 WHERE 子句中搜索列中的指定模式。
你用的哪个数据库啊?
oracle 的话:select * from all_tables where table_name like '%XY1%'
SQL2000数据库:select name from sysobjects where xtype='u' and name like '%xy1%'
数据库遍历,快速搜索算法