数据库查询哪个对象里面包含什么字段方法语句
吾爱主题
阅读:131
2024-04-05 14:22:15
评论:0
?
1 2 3 4 5 | select * from sysobjects o, syscomments s where o.id = s.id and text like '%text%' and o.xtype = 'P' |
text换成需要查的字段
数据库查询哪个对象里面包含表
?1 | select o. name from sys.all_sql_modules s,sysobjects o where definition like '%表名%' and o.id = s.object_id |
表名换成需要查的表名
原文链接:https://www.cnblogs.com/chenqingbin/p/11320144.html
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。