在查询时如何某个字段来合计呢? 这里有一些代码值得参考: select * from ( select * from t1 union all select 月,’本月合计’,sum([数量]) fro
月度归档: 2015 年 7 月
SQL查询一个表中有哪些字段
–表的字段名称 select name from syscolumns where id=object_id( '表 ') –表的字段数 select count(name) from syscolumns where id=object_id( '表 ') 建议改成:object_id(N '