需要建一个表,像这样的:
(编号后面有一条竖线,一直延伸到下面)
(上半年后面有一条竖线,一直延伸到下面)
———————————
            2007年
 编号  ———————
       上半年 下半年
———————————
  1     200   400
———————————
  2     245   345
———————————
有人会吗?

解决方案 »

  1.   

    http://www.ptpress.com.cn/books/Book_Information.asp?BID=13649
      

  2.   

    老大,你搞错啦,你那是存储过程。我这个是C#编程。像下面这种的,用ADO.net编写!private DataTable newTable=new DataTable();newTable.Columns.Add("编号",typeof(string));newTable.Columns.Add("上半年",typeof(string));newTable.Columns.Add("下半年",typeof(string));