码迷,mamicode.com
首页 > 数据库 > 详细

数据库查询表,查询表所属字段等语句

时间:2019-11-27 12:30:35      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:count   where   sch   rom   from   mat   视图   form   sel   

--sql server 数表:
select * from sysobjects where xtype=‘U‘
--数视图:
select count(1) from sysobjects where xtype=‘V‘
--数存储过程
select count(1) from sysobjects where xtype=‘P‘
SELECT * FROM sysobjects WHERE (xtype = ‘U‘)

--查询表所属列
SELECT * from INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=‘SystemMasterData‘

数据库查询表,查询表所属字段等语句

标签:count   where   sch   rom   from   mat   视图   form   sel   

原文地址:https://www.cnblogs.com/start2019/p/11940976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!