我需要一种智能方法,以一种可以在CREATE TABLE语句中使用的方式从INFORMATION_SCHEMA.COLUMNS中获取数据类型.问题是需要理解的"额外"字段,例如NUMERIC _
PRECISION和NUMERIC _
SCALE.
显然,我可以忽略INTEGER的列(精度为10,比例为0),但还有其他类型我会感兴趣,例如NUMERIC.因此,如果没有编写大量代码来解析表,那么有关如何从列定义中获取某种字段速记的任何想法?
我希望能得到类似的东西:int,datetime,money,numeric**(10,2)**
select column_type = data_type + case when data_type like '%text' then '' when data_type like '%char' and character_maximum_length = -1 then '(max)' when character_maximum_length is not null then '(' + convert(varchar(10), character_maximum_length) + ')' when data_type = 'numeric' then '(' + convert(varchar(10), isnull(numeric_precision, 18)) + ', ' + convert(varchar(10), isnull(numeric_scale, 0)) + ')' else '' end ,* from information_schema.columns