怎样判断一个列是自增列 问题点数:20、回复次数:2Top
if columnproperty(object_id('表名'),'列名','IsIdentity')=1 print '是identity列' else print '不是identity列'Top
只能UP了Top