Good morning, I'm trying to make an "Update" to two tables in my database but doing so marks me an error and I'm not able to find the error, as far as I understand the syntax of my query is fine. But even so phpmyadmin throws me the error that something is not right with the syntax.
Here the Code:
UPDATE
pm_t_bb
INNER JOIN pm_t_pt ON(pm_t_bb.OT = pm_t_pt.OT)
SET
pm_t_bb.BB_1 = 'R' pm_t_bb.BB_2 = 'R' pm_t_bb.BB_3 = 'R' pm_t_bb.BB_4 = 'R' pm_t_bb.BB = '100' pm_t_bb.F_Up = Now() pm_t_pt.BB = '1.5'
WHERE
pm_t_bb.OT = '1010176'
The one difference compared to when my updates worked was that they were in separate queries and for performance reasons, because they were uni.
Thanks in advance!
Greetings to all!