SSRS创建复合型图表
摘要:SSRS创建复合型图表1.添加报表数据对应代码:if object_id('tb') is not null drop table tb;goCREATE TABLE tb(yearid int,[population] int,income int)goinsert into tb(yearid,[population],income)select 2010 as id,100000 as population,123456 as incomeunion all select 2011,110000,1346000union all select 2012,115000,12
阅读全文
posted @ 2013-11-06 21:09
浙公网安备 33010602011771号