数据库查询哪个对像里面包含什么字段语句写法:
select *
from sysobjects o, syscomments s
where o.id = s.id
and text like '%text%'
and o.xtype = 'P'
text换成需要查的字段
数据库查询哪个对像里面包含表
select o.name from sys.all_sql_modules s,sysobjects o where definition like '%表名%' and o.id = s
方法很简单:text字段不能使用Replace,所以使用patindex 代码如下:-select * from Product where P_Intro like ‘%[removed][removed]%’ –text字段的替换处理示例–全表替换 — select datalength(P_Intro),* from Product –邀月 整理 –定义替换的字符串 declare s_str nvarchar(4000),d_str n