在公司写的许多代码都有一些重复和繁琐的,通过获取数据库表的一些配置,再写一套复用逻辑,就可以快速生成代码

获取数据库表的字段,字段属性,以及说明信息

1
2
select a.column_name,a.data_type,b.value as columns_desc from information_schema .columns as a,sys.extended_properties as b where a.table_name = '表名' and b.major_id = (select object_id from sys.tables where name = '表名') and a.ORDINAL_POSITION = b.minor_id