Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Query untuk mendapatkan id so dan update status so ke 4 (cancel)
- * */
- select * from so where code = 'HI.DS.2408.01632';
- /* ============================================== */
- /* Query untuk update kolom status menjadi 0 (not pickup)*/
- select * from so_detail_sn sds where so_id = 11198;
- /*========================================================== */
- /* Query untuk update kolom is_use ke 0 (tidak digunakan) */
- select * from model_sn ms where serial_number in (
- '111008100202313210000282',
- '111008100202313210000283',
- '111007800201110110000373'
- );
- /* ======================================================= */
- /*Query untuk mendapatkan unit_id yang didapatkan dari id tabel model_sn untuk dihapus historynya
- * yang berupa note: first assigned serial number dan scan by
- * */
- select * from unit_sn_history_wms ushw where unit_id = 74137;
- /* ========================================================== */
- /* Query untuk update kolom actual_start_date dan actual_end_date menjadi null*/
- select * from driver_schedule ds where code = 'HI.DS.2408.01632';
- /*===============================================================*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement