Advertisement
abdurahman_argoebie

Untitled

Aug 22nd, 2024
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.98 KB | Source Code | 0 0
  1. /* KASUS GANTI HARGA DI SERVICE EXTERNAL BERDASARKAN CODE */
  2.  
  3. select * from service_external_pickup_receives sepr where code = 'SR.2404.00485';
  4.  
  5. select * from se_product_change_parts spcp where service_external_pickup_receive_id = 3739;
  6. /* diambil dari id yang dihasilkan dari table service_external_pickup_receives */
  7.  
  8. select * from se_product_change_part_spareparts spcps where se_product_change_part_id = 1963;
  9. /* diambil dari id yang dihasilkan dari table se_product_change_parts*/
  10.  
  11. /*/biasa nya ada yang untuk pergantian harga di accesories, untuk querynya hampir sama dengan di table se_product_change_part */
  12. select * from se_product_change_part_accesories spcpa where se_product_change_part_id = 1963;
  13.  
  14. /*setelah sudah dapat data yang diperlukan, update kolom price dan total_price di table se_product_change_part_spareparts atau di tabel se_product_change_part_accesories. Note: untuk update kolom price dan total price disesuaikan dengan permintaan user*/
  15.  
  16. /* happy coding :)*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement