VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 数据库 > sql数据库 >
  • sql语句大全之sql server 查询某个表被哪些存储过程

select distinct object_name(id) from syscomments where id in
(select id from sysobjects where type =’P’) and text like%TableName%

相关教程