当前位置:Gxlcms > mysql > SSRS创建复合型图表

SSRS创建复合型图表

时间:2021-07-01 10:21:17 帮助过:36人阅读

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

if object_id('tb') is not null drop table tb; go CREATE TABLE tb(yearid int,[population] int,income int) go insert into tb(yearid,[population],income) select 2010 as id,100000 as population,123456 as income union all select 2011,110000,1346000 union all select 2012,115000,1200000 union all select 2013,120000,1500000

人气教程排行