所以sql server 比access安全.不过用事务可以做到.

解决方案 »

  1.   

    update his_purchase
    set isexport = 1
    where id = '2333'
    update b
    set b.recored_id = '3',b.plat_id = '55'
    from  his_purchase e,hup_comm_list b 
    where e.id='2333'  and e.id=b.record_id  
      

  2.   

    update (select e.*,b.record_id,b.plat_id from  his_purchase e,hup_comm_list b where e.id='2333'  and e.id=b.record_id ) set  e.isexport = '1',b.record_id='3',b.plat_id='55' 用视图不知道行不行?
      

  3.   

    晕 这条语句在Access里面居然可以通过?