专题文章
时长:00:00更新时间:2020-11-09 10:22:26
SSRS创建复合型图表: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,1346000un
查看详情