UPDATE scholar SET STATUS = s.status
FROM student AS s
WHERE scholar.id = s.id;
UPDATE sc_sp_o_c_score
  SET score = tmp.score
  FROM temp_weighted_scores_offers AS tmp
  WHERE tmp.fk_offer = fk_offer
    AND tmp.fk_offer IN (SELECT fk_offer FROM temp_offerids_with_score)
    AND fk_category = 1
    AND fk_searchprofile = 12345;

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-16
  • 2021-08-10
  • 2021-10-06
  • 2021-09-22
  • 2021-10-24
  • 2021-11-01
猜你喜欢
  • 2021-09-22
  • 2021-12-26
  • 2022-12-23
  • 2021-12-24
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案