显示行号 复制代码 这是一段程序代码。
  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函数

相关文章:

  • 2022-12-23
  • 2021-06-18
  • 2022-12-23
  • 2021-06-22
  • 2021-11-15
  • 2022-02-10
猜你喜欢
  • 2022-01-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-07
  • 2021-10-09
  • 2022-12-23
相关资源
相似解决方案