Move update sql script to initial_sql directory. #419

This commit is contained in:
Korina Cordero 2020-05-27 08:51:07 +00:00
parent 7b60ec7c5f
commit fabccc6950

View file

@ -0,0 +1 @@
UPDATE job_order jo, customer c, customer_vehicle cv SET jo.first_name = c.first_name, jo.last_name = c.last_name, jo.phone_mobile = c.phone_mobile, jo.plate_number = cv.plate_number WHERE jo.customer_id = c.id AND jo.cvehicle_id = cv.id;