Select <br> col.[name],<br> col.[length],<br> type.[name],<br> pro.value <br> From syscolumns as col<br> Left Join systypes as type on col.xtype = type.xtype<br> Left Join sysProperties as pro on col.id = pro.id and col.colid = pro.smallid<br> where col.id = (Select id From Sysobjects Where name = 'tableName')