zoukankan      html  css  js  c++  java
  • SQL查询表、视图、存储过程、函数的创建和变更时间

    显示行号 复制代码 这是一段程序代码。
    1. SELECT [name],
        case [type] when 'U' then 'TB' when 'V' then 'VE' when 'P' then 'SP' when 'IF' then 'FC' end as  类型,
    2.   [create_date]as 创建时间,
        [modify_date] as 修改时间 FROM sys.objects
      Where ([type]='U' or [type] = 'V' OR [type]= 'P' or [type]='IF') and ([name]<>'sysdiagrams' and [name] not like 'sp_%')
      ORDER BY [modify_date] desc

    * TB 表 VE 视图 SP 存储过程 FC函数

  • 相关阅读:
    系统安装之:虚拟机VMware V12.0.1 专业版 + 永久密钥
    PHP之:析构函数
    HTML之:让网页中的<a>标签属性统一设置-如‘新窗口打开’
    HTML之:fieldset——一个不常用的HTML标签
    系统配置 之:远程桌面连接(win7系统)
    Code笔记 之:注册页面验证码
    PHP之:PHP框架
    Code笔记 之:防盗链(图片)
    Ehcache(2.9.x)
    Ehcache(2.9.x)
  • 原文地址:https://www.cnblogs.com/mmmhhhlll/p/1598907.html
Copyright © 2011-2022 走看看