I want to transfer 3 values from one table to another. I do this with three subqueries. Can I do this in one request? That is, do not write 3 subqueries?
UPDATE worker SET start = (SELECT em.start FROM employee em WHERE em.id = id); UPDATE worker SET end = (SELECT em.end FROM employee em WHERE em.id = id); UPDATE worker SET count = (SELECT em.count FROM employee em WHERE em.id = id);