数据库查询某个对像里面包含哪些字段方法的sql语句写法:数据库查询某个对像里面包含哪些字段方法的sql语句写法: select *from sysobjects o, syscomments swhere o.id = s.idand text like '%text%'and o.xtype = 'P' text 换成需要查的字段 数据库查询哪个对像里面包含表:
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.object_id
select o.name from sys.all_sql_modules s,sysobjects o where definition like '%表名%' and o.id = s.object_id
表名换成需要查的表名
沃梦达教程
本文标题为:数据库查询某个对像里面包含哪些字段方法的sql语句
基础教程推荐
猜你喜欢
- Python常见库matplotlib学习笔记之多个子图绘图 2023-07-27
- Redis如何实现延迟队列 2023-07-13
- SQLServer 清理日志的实现 2023-07-29
- python中pandas库的iloc函数用法解析 2023-07-28
- 关于MySQL中explain工具的使用 2023-07-27
- Sql Server Management Studio连接Mysql的实现步骤 2023-07-29
- 如何将excel表格数据导入postgresql数据库 2023-07-20
- Mysql主从三种复制模式(异步复制,半同步复制,组复 2022-09-01
- Mysql查询所有表和字段信息的方法 2023-07-26
- 【Redis】数据持久化 2023-09-12