LiCongMingDeShujuku / Update-About_Ztrack-Table-Description-With-This-Short-Script

用此简短脚本更新About_Ztrack表的说明

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CLEVER DATA GIT REPO

用此简短脚本更新About_Ztrack表的说明

Update About_Ztrack Table Description With This Short Script

发布-日期: 2015年11月20日 (评论)

#

Contents

中文

这是用于向ABOUT_ZTRACK表添加注释的更新语句。

English

Here’s the update statement for adding notes to the ABOUT_ZTRACK table


Logic

use ztrack;
set nocount on
 
insert into about_ztrack
(
zt_object_type
,   zt_object_name
--, zt_object_logic
,   zt_description
)
values
(
'My Object Type, Table, Sp, Query, etc.'
,   'My Object Name'
--, 'insert my query logic here if needed'
-- 如果需要,在此处插入我的查询逻辑
,   'My notes about this object'
)

WorksEveryTime

Build-Info

Build Quality Build History
Build-Status
Coverage
Nuget
Build history

Author

  • 李聪明的数据库 Lee's Clever Data
  • Mike的数据库宝典 Mikes Database Collection
  • 李聪明的数据库 "Lee Songming"

Gist Twitter Wordpress


License

LicenseCCSA

Lee Songming

About

用此简短脚本更新About_Ztrack表的说明