7
Hello, I’m new to the forum and I need some help with SGBD Postgresql.
My doubt 'and the following, in the following code used in DBMS Mysql the execution happens perfectly, by'em in Postgresql shows an error.
Mysql code:
UPDATE userT
INNER JOIN empresa ON userT.idEmp = empresa.idEmp
SET userT.telefone = '15253485',
empresa.cargaTrab = 12
WHERE idUser = 1;
The above mentioned code performs perfectly in Mysql but in Postgresql appears the following error:
ERROR: syntax error at or near "INNER".
Could someone help me?
That doesn’t work in postgres
– rray