下面这两段什么意思啊?  不懂啊   请赐教~
 private const string AddProject = "insert into {0}(proj_id,proj_name,organ_unit,speaker,score,period,study_dt,telephone,re,cme_year,state) values('{1}','{2}','{3}','{4}','{5}','{6}','{7}','{8}','{9}','{10}',{11})";
    private const string EditProject = "update {0} set proj_id='{1}', proj_name='{2}',speaker='{3}',score={4},period={5},study_dt='{6}',telephone='{7}',re='{8}',cme_year='{9}' where id={10}";
 sqlText = "select id,proj_id,proj_name,organ_unit,speaker,score,period,study_dt,{0}.telephone,re,cme_year,state=case state when 1 then '已通过' when 2 then '已提交' when 3 then '已公布' when 4 then '未通过'  else '未提交' end,{1}.unit_name from {0} join {1} on {0}.organ_unit={1}.unit_id where organ_unit='{2}'";