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函数

  • 相关阅读:
    C#开源实现MJPEG流传输
    EntityFramework中使用Repository装饰器
    Lambda应用设计模式
    Lambda表达式的前世今生
    那些年黑了你的微软BUG
    敏捷软件开发揭秘
    SVN previous operation has not finished
    NodeJS+Express开发web,为什么中文显示为乱码
    使用Visual Studio 调试断点不起作用的问题解决办法 调试Revit CAD 不能进入断点
    openFileDialog的Filter属性设置
  • 原文地址:https://www.cnblogs.com/mmmhhhlll/p/1598907.html
Copyright © 2011-2022 走看看