博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sql常用语句
阅读量:5067 次
发布时间:2019-06-12

本文共 435 字,大约阅读时间需要 1 分钟。

得到一个表列的个数:select count(a.name) as count from syscolumns a where a.id=object_id('TB_B_PROJECTS')

修改列的长度: alter table [TB_B_PROJECTS] alter column [INTRODUCE] varchar(2048)

like排除: select distinct projectcode from prj_017 where PROJECTCODE not like'P%' and PROJECTCODE not like'S%' and PROJECTCODE not like' P%' and PROJECTCODE not like' S%'

查看触发器跟表之间的关系:sp_depends '[Opportunity]'

转载于:https://www.cnblogs.com/toSeeMyDream/p/4517037.html

你可能感兴趣的文章