type rec_criteria   is record (name          temp_inspection_data.type_list%type,
                                 range_from    number(15,2),
                                 range_to      number(15,2));
  type tbl_criteria   is table of rec_criteria;
                                 
  type rec_total      is record (type          temp_inspection_data.type_list%type,
                                 total         number(15));
  type tbl_total      is table of rec_total;以上ORACLE语句如何转换成SQL SERVER 2005的啊?