数据库查询哪个对像里面包含什么字段 select *from sysobjects o, syscomments swhere o.id = s.idand text like '%text%'and o.xtype = 'P' text换成需要查的字段 数据库查询哪个对像里面包含表select o ...
分类:
数据库 时间:
2019-08-08 11:46:23
阅读次数:
129
select a.name as '表名',b.rows as '表数据行数'from sysobjects a inner join sysindexes bon a.id = b.idwhere a.type = 'u'and b.indid in (0,1)--and a.name not l ...
分类:
其他好文 时间:
2019-05-31 16:51:59
阅读次数:
98
--判断临时表是否存在,存在则删除重建if exists(select 1 from tempdb..sysobjects where id=object_id('tempdb..#tabName') and xtype='u')drop table #tabNamegocreate table # ...
分类:
其他好文 时间:
2019-05-31 16:44:57
阅读次数:
100
参考 https://www.cnblogs.com/ruanraun/archive/2018/05/17/9050150.html SELECT obj.Name 存储过程名, sc.TEXT 存储过程内容 FROM syscomments sc INNER JOIN sysobjects ob ...
分类:
数据库 时间:
2019-05-28 11:03:45
阅读次数:
171
http://www.w3school.com.cn/sql/index.asp 官网教程 查询各个表格的行数 表格名+行数 SELECT a.name, b.rowsFROM sysobjects AS a INNER JOINsysindexes AS b ON a.id = b.idWHERE ...
分类:
数据库 时间:
2019-05-25 12:59:20
阅读次数:
109
一,Sql—表格的建立,删除,数据的建立与删除 Sql表格的建立公式 If exists (select * from sysobjects where <表名> Drop table <表名> Create table <表名> (<列名1> <数据类型> <约束类型> <是否为空>, <列名2> ...
分类:
数据库 时间:
2019-05-09 20:12:15
阅读次数:
144
原文:SqlServer中获取所有数据库,所有表,所有字段一、获取所有数据库 select * from master.dbo.SysDatabases 二、获取某个库中所有表 SELECT * FROM SysObjects Where XType='U' --XType='U':表示所有用户表;... ...
分类:
数据库 时间:
2019-05-08 12:10:40
阅读次数:
127
select a.name tabname,b.value,a1.name from sysobjects a left join sys.columns a1 on a.id = a1.object_id left join sys.extended_properties b on b.major ...
分类:
数据库 时间:
2019-04-11 13:18:57
阅读次数:
148
--查询什么存储过程和视图用到了这个字段 select distinct b.name from syscomments a,sysobjects b where a.id=b.id and a.text LIKE '%xxx%' --查询一个表有什么字段 select name from SysC ...
分类:
数据库 时间:
2019-04-01 17:27:25
阅读次数:
173
添加一张表 IF NOT EXISTS ( SELECT 1 FROM sysobjects WHERE name = 'JyWeb_CDYY' AND xtype='U') BEGIN CREATE TABLE [dbo].[JyWeb_CDYY]( [TheYear] [int] NULL, [ ...
分类:
数据库 时间:
2019-03-26 13:46:36
阅读次数:
270