如何在数据库中查找某个字

2024-11-29 09:41:29
推荐回答(3个)
回答1:

select * from all_tables where table_name like '%zhidao%'

LIKE 操作符用于在 WHERE 子句中搜索列中的指定模式。
LIKE 操作符
LIKE 操作符用于在 WHERE 子句中搜索列中的指定模式。

回答2:

你用的哪个数据库啊?
oracle 的话:select * from all_tables where table_name like '%XY1%'
SQL2000数据库:select name from sysobjects where xtype='u' and name like '%xy1%'

回答3:

数据库遍历,快速搜索算法