Changes between Version 21 and Version 22 of INTEGRATING fish
- Timestamp:
- Dec 6, 2010 4:45:42 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
INTEGRATING fish
v21 v22 106 106 drop table wrbd.specimen_riv_08_09_1; 107 107 --wrbd.specimen_riv_08_09_2 now contains operation and stations 108 109 insert into wrbd.fish_fi( 110 fi_st_id, 111 fi_op_id, 112 fi_fishid, 113 fi_date, 114 fi_year, 115 fi_individual_life, 116 fi_retained, 117 fi_length, 118 fi_weight) 119 select 120 fi_st_id, 121 fi_ope_id, 122 fish_id, 123 date, 124 year, 125 individual_life_silver_stage, 126 retained, 127 case when length_cm is null then estimated_length_cm 128 else length_cm end as length, 129 weight_g from wrbd.specimen_riv_08_09_2; 108 130 }}}